gpt4 book ai didi

javascript - 从vuejs中的组件模板访问父方法

转载 作者:可可西里 更新时间:2023-11-01 02:36:52 25 4
gpt4 key购买 nike

我有这个代码:

     new Vue({
el: '#app',
components: {
'app-component': AppComponent
},
data: {
message: 'Hello Vue.js!'
},
methods: {
doSomething: function(){
console.log('arrived!')
}
}
})

如何从 AppComponent html 模板调用“doSomething”方法?像这样:

<app-component>  
<a href="#" v-on:click="doSomething()">text</a>
</app-component>

我收到这个错误:

Uncaught TypeError: scope.doSomething is not a function

最佳答案

试试 v-on:click="$parent.doSomething()"

关于javascript - 从vuejs中的组件模板访问父方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37225263/

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