当前位置: 首页 > 工具软件 > SiLK > 使用案例 >

Vue Silk Road

吴俊晤
2023-12-01

起因

seo搜的

内容

1 查找某一个组件实例化对象

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>

2 Duplicate keys detected: ‘0’. This may cause an update error.

错误原因:
在使用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>

3 Uncaught SyntaxError: Unexpected token <

https://www.jianshu.com/p/f95cbf950e6f
本质为404错误,查看引用文件是不是路径不存在

 类似资料:

相关阅读

相关文章

相关问答