seo搜的
https://stackoverflow.com/questions/35769139/vue-js-children-by-component-name
// you can use this property:
this.$root.$children[0].$options.name
this.$root.$children.find(child => { return child.$options.name === "name"; });
// in the code of the parent component, access the referenced child component like this:
this.$refs.detailsChild
<!-- Template of the parent component, assuming your child Component is called Details -->
<details v-ref:details-child></details>
错误原因:
在使用v-for的时,都要必须加上一个唯一的key值,但是这里写了两个for循环,尽管都加上了key值,然而又将key的值写成一样的了。所以就导致了警告。
解决办法:
可以将其中一个的key修改一下即可。
<div class="info" v-for="(item, index) in itemList" :key="index"></div>
<div class="info" v-for="(item, index) in itemList" :key="index"></div>
<div class="info" v-for="(item, index) in itemList" :key="'info-'+ index"></div>
<div class="info1" v-for="(item, index) in itemList" :key="'info1-'+ index"></div>
https://www.jianshu.com/p/f95cbf950e6f
本质为404错误,查看引用文件是不是路径不存在