我是瀏覽器直接引入 vue.js 的。以下代碼。點(diǎn)擊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>
關(guān)于vue v-on $emit 的不解。
桃花長(zhǎng)相依
2018-09-24 17:04:30