Vue.js
Posted xpz-python
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue.js相关的知识,希望对你有一定的参考价值。
一、Vue基础知识
1、怎么通过id查找索引
this.list.some((item, i) =>
if (item.id == id)
//在数组的 some 方法中,
this.list.splice(i, 1)
return true;
)
var index = this.list.findIndex(item =>
if (item.id == id)
return true
)
以上是关于Vue.js的主要内容,如果未能解决你的问题,请参考以下文章