vue.js – VUEJS从列表中删除元素?

可以从列表中删除特定的元素.我尝试这个功能删除元素

pop() = remove last element

$remove(index) = not remove any element from lists

remove( index ) = undefined function

unshift( index ) = add new and empty element

splice( index ) = remove all element from index

请帮助我删除列表中的特定元素.

下面是我的js代码

var example2 = new Vue({
  el: '#example-2',data: {
    items: [
      { message: 'Foo' },{ message: 'Bar' },{ message: 'Bar1' },{ message: 'Bar2' },{ message: 'Bar3' },{ message: 'Bar4' }
    ]
  },method : {
    removeElement : function(index){
        this.items.$remove(index);
    }
  }
})

下面是我的HTML代码

<ul id="example-1">
  <li v-for="(key,item) in items">
    {{ item.message }}
    <button v-on:click="removeElement(key)">remove</button>
  </li>
</ul>

解决方法

$remove在Vue.js 2.0中被弃用,并被文档中所示的拼接替换.确保添加拼接的第二个参数,使其工作.

Migration From Vue 1.x – 2.0

methods: {
  removeElement: function (index) {
    this.items.splice(index,1);
  }
}

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ &quot;TOC&quot; 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...