Vue自定义事件
2022/8/12 23:27:05
本文主要是介绍Vue自定义事件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
<!DOCTYPE html> <html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="app"> <todo> <todo-title slot="todo-title" :title="title"></todo-title> <todo-items slot="todo-items" v-for="(item,index) in todoItems" :item="item" :index="index" v-on:remove="removeItems(index)"></todo-items> </todo> <!-- <p>列表书籍</p>--> <!-- <ul>--> <!-- <li>Java</li>--> <!-- <li>Linux</li>--> <!-- <li>Python</li>--> <!-- </ul>--> </div> <!--1.导入Vue.js--> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> <script> //slot:插槽 Vue.component("todo",{ template: '<div>\ <slot name="todo-title"></slot>\ <ul>\ <slot name="todo-items"></slot>\ </ul>\ </div>' }); Vue.component("todo-title",{ props: ['title'], template: '<div>{{title}}</div>' }); Vue.component("todo-items",{ props: ['item','index'], //template只支持一个根节点 //只能绑定当前组件方法 template: '<li>{{index}}---{{item}}<button @click="remove">删除</button></li> ', methods: { remove: function (index) { this.$emit('remove',index); } } }); var vm = new Vue({ el:"#app", data: { title: "asdaf", todoItems: ['wty','asd','zzz'] }, methods: { removeItems: function(index) { console.log("删除了"+this.todoItems[index]+"OK"); this.todoItems.splice(index,1);//一次删除一个元素 } } }) </script> </body> </html>
这篇关于Vue自定义事件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-27Vue2面试真题详解与实战教程
- 2024-12-27Vue3面试真题详解与实战攻略
- 2024-12-27JS大厂面试真题解析与实战指南
- 2024-12-27JS 大厂面试真题详解与实战指南
- 2024-12-27React 大厂面试真题详解及应对策略
- 2024-12-27Vue2 大厂面试真题详解及实战演练
- 2024-12-27Vue3 大厂面试真题详解及实战指南
- 2024-12-27Vue3大厂面试真题详解与实战攻略
- 2024-12-26React入门教程:从零开始搭建你的第一个React应用
- 2024-12-25Vue2入门教程:轻松掌握前端开发基础