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删除。