我是Vue的新手,我有一个组件(id =“ apartments”),其中的我是从另一个资源/视图文件中获取内容的,用于添加html的代码是:
plansHtml = '<a href="{{ $plans[0]['href'] }}" v-on:click="testfunction();"></a>';//This is the html which I am getting from Ajax, and in this html I have used v-on:click
activePlanContainer.html(plansHtml);
我的Js文件中的代码是:
var appApartments = new Vue({
el: '#apartments',
methods: {
testfunction: function() {
console.log('Test function called');
}
}
});
请让我知道我在做什么错,我也尝试了v-on:click-native =“ testfunction();”但这也没有用。 预先感谢
答案 0 :(得分:0)
也许您在这里有两个问题
<a></a>
标记中的代码中没有任何内容或者您可以为我们提供更多代码来解决您的问题