我有分量如何點擊整個vuejs組件
,我想點擊後運行方法
<my-component @click="showOtherDiv"></my-component>
我對主應用程序的方法
var app = new Vue({
el: '#app',
data: {},
methods: {
showOtherDiv : function(){
alert('Some message');
}
}
});
這種方法但似乎像「點擊」不適用於全部組件
它應該工作。你能提供一個codepen或jsfiddle – CodinCat