1 2 3 4 5 6 | var myCompOnent={ template:'hello world' }; var myComponent2=Vue.extend({ template:'hello world' }); |
上面两个代码显示结果一样
1 2 3 4 |
1 2 3 4 5 | Vue.component('my-component',myComponent); Vue.component('my-component2',myComponent2); var vm=new Vue({ el:'#app' }) |