gpt4 book ai didi

javascript - [Vue 警告] : Failed to resolve directive: ref

转载 作者:行者123 更新时间:2023-11-30 15:35:26 26 4
gpt4 key购买 nike

我正在学习 Vue.js 中的组件。

模板是:

<script type="text/template" id="child1">
<h3>This is the child1~!</h3>
</script>
<script type="text/template" id="child2">
<h3>This is the child2~!</h3>
</script>
<script id="parent" type="text/template">
<div>
<h2>This is the parent~!</h2>
<child1 v-ref:cc1></child1>
<child2 v-ref:cc2></child2>
<button v-on:click="getChildren">get children msg</button>
</div>
</script>

JS 是:

    Vue.component('parent', {
template: '#parent',
methods: {
getChildren:function() {
alert(this.$refs.cc1);
alert(this.$refs.cc2);
}
},
components: {
'child1': {
template: '#child1',
data: function() {
return {
msg: 'This is the child1 ~!'
}
}
},
'child2': {
template: '#child2',
data: function() {
return {
msg: 'This is the child2 ~!'
}
}
}
}
});

Vue 抛出

warn:vue.js:525 [Vue warn]: Failed to resolve directive: ref (found in component )

谁能告诉我为什么?谢谢!

最佳答案

您正在使用 Vue 2.0 和 Vue 1.0 语法:

查看迁移文档:

https://v2.vuejs.org/v2/guide/migration.html#v-el-and-v-ref-replaced

所以,你应该使用:

<child1 ref="cc1"></child1>
<child2 ref="cc2"></child2>

或者把Vue版本改回1.x

关于javascript - [Vue 警告] : Failed to resolve directive: ref,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41627728/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com