1
調用VUE應用程序的方法我有一個VUE組件和VUE元素聲明如下如何從VUE組件
Vue.component('todo-item', {
template: '<li>This is a todo</li>'
methods: {
test: function() {
// I am getting an error here
app.aNewFunction();
}
}
})
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
},
methods: {
aNewFunction: function() {
alert("inside");
}
}
})
給出如何調用從VUE成分VUE應用程序的方法?
確定。謝謝。它運行良好。 –