我是瀏覽器直接引入 vue.js 的。以下代碼。點擊hi只打印 hi 不打印 hello。不知為何。<div id="app"><div v-on:hello="hello"><div v-on:click="hi">hi</div></div></div><script>var vm = new Vue({el:'#app',methods: {hello: function() { console.log('hello');
},hi: function(){ console.log('hi'); this.$emit('hello');
}}});</script>
添加回答
舉報
0/150
提交
取消