1.今天關于這個vue的雙向綁定以及自定義事件分發(fā)和插槽等知識做了一個程序的總結
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>vue核心語法</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" v-bind:index="index" v-on:remove="removeItems(index)" :key="index"></todo-items>
</todo>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.21/dist/vue.min.js"></script>
<script>
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:'<li>{{item}} <button @click="remove">刪除</button></li>',
methods:{
remove:function (index) {
this.$emit('remove',index)
}
}
});
var vm=new Vue({
el:"#app",
data:{
title:"huangshuai",
todoItems:['huang','shuai','huangshuai']
},
methods:{
removeItems:function (index) {
console.log("刪除了"+this.todoItems[index]+"OK");
this.todoItems.splice(index,1);//一次刪除一個元素
}
}
});
</script>
</body>
</html>
image.png
點擊刪除之后
image.png