const CounterComponent = Vue.extend(Counter); this.vm = new CounterComponent({}).$mount('#container');
其中 Counter 是引进来的组件this.vm是引进来的组件生成的vue实例我们可以通过this.vm.xx来直接控制Counter中的data中的数据