vue中提示$index is not defined
Posted xinzhyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中提示$index is not defined相关的知识,希望对你有一定的参考价值。
今天学习Vue中遇到了一个报错信息:$index is not defined,是我写了个for循环在html中,然后是因为版本的问题
下面是解决方法:
原来的是 v-for="person in items"
v-on:click="deletePerson($index)"//这个仅仅适用于1.0版本,不要采坑了同学们
这个在Vue1.0版本中式适用的可以直接使用$index,但是在2.0是不适合的
在Vue 2.0版本中获取索引我们需要通过 v-for = "(person ,index) in items ", 点击事件我们也不能使用$index,应该使用
v-on:click="deletePerson(index)"
https://blog.csdn.net/shaleilei/article/details/79145593
以上是关于vue中提示$index is not defined的主要内容,如果未能解决你的问题,请参考以下文章
uni-app的Vue项目中Echarts的报错提示:[Vue warn]: Error in data(): “ReferenceError: echarts is not defined“
Vue-cli3 中 通过在index.html添加的script js文件 如何在组件内使用不会 xxx is not defined错误
关于vue,webpack 中 “exports is not defined”报错