const CounterComponent = Vue.extend(Counter); this.vm = new CounterComponent({}).$mount('#container');
其中 Counter 是引進來的組件
this.vm是引進來的組件生成的vue實例
我們可以通過this.vm.xx來直接控制Counter中的data中的數據
const CounterComponent = Vue.extend(Counter); this.vm = new CounterComponent({}).$mount('#container');
其中 Counter 是引進來的組件
this.vm是引進來的組件生成的vue實例
我們可以通過this.vm.xx來直接控制Counter中的data中的數據
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。