最新回答 / young明
尝试运行npm update -g npm然后再次运行npm i。如果这不起作用,npm cache clean可能有帮助。如果这不起作用,您应该考虑删除应用程序中的node_modules文件夹并再次运行npm install
2021-03-17
最赞回答 / 烛影人
<li v-for="(item,index)of list" :key="index">改为<li v-for="(item,index) of list" :key="index">
2021-01-26
最赞回答 / 慕运维1996582
父组件到子组件数据传递:父组件通过绑定自定义属性(如:content="item")向子组件传参,子组件需要使用props接收父组件所传递的参数(如 props:['content'],)子组件调父组件方法:子组件通过$emit(funcName,value)的方式(如:$emit( 'delete', this.index))触发父组件的监听方法(如:@delete="handleDelete"),父组件收到监听后,会用模板中定义的handleDelete方法
2021-01-08