我正在尝试在Vue.js中实现动态添加和删除组件。
切片方法存在问题,基本上它应该通过传递索引从数组中删除元素。要改变数组我使用切片(i,1)。
根据this的答案,以这种方式修改数组应该对我有帮助,但是不起作用。
我做错了什么?
这是我的代码和codepen:
<div id="app">
<button @click="addNewComp">add new component</button>
<template v-for="(comp,index) in arr">
<component
:is="comp"
:index="index"
@remove-comp="removeComp(index)"
></component>
</template>
</div>
<script type="text/x-template " id="compTemplate">
<h1> I am a component {{index}}
<button v-on:click="$emit('remove-comp')">X</button>
</h1>
</script>
const newComp = Vue.component("newComp",{
template:"#compTemplate",
props:['index']
})
new Vue({
el:"#app",
data:{
arr:[newComp]
},
methods:{
addNewComp:function(){
this.arr.push(newComp);
console.log(this.arr);
},
removeComp:function(i){
console.log(i);
this.arr.slice(i,1);
console.log(this.arr);
}
}
})
答案 0 :(得分:3)
const newComp = Vue.component("newComp",{
template:"#compTemplate",
props:['index']
})
new Vue({
el:"#app",
data:{
arr:[newComp]
},
methods:{
addNewComp:function(){
this.arr.push(newComp);
},
removeComp:function(i, a){
console.log('i', i, a, typeof i);
this.arr.splice(i,1);
}
}
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17-beta.0/vue.js"></script>
<div id="app">
<button @click="addNewComp">add new component</button>
<template v-for="(comp,index) in arr">
<component
:is="comp"
:index="index"
@remove-comp="removeComp(index, 100+index)"
:key="`${index}`"
></component>
</template>
</div>
<script type="text/x-template " id="compTemplate">
<h1> I am a component {{index}}
<button v-on:click="$emit('remove-comp')">X</button>
</h1>
</script>
我之前读过这个与Vue和反应状态有关的事情。
.slice()
是非反应性的,因此它返回数据的副本而不改变原始数据(即非反应性)。
使用被动的.splice()
,或者更好地查看.filter()
here
答案 1 :(得分:0)
您正在使用切片方法,而不是您提供的链接中提到的拼接方法。
deleteEvent: function(index) {
this.events.splice(index, 1);
}