组件:分三步
创建组件:
var myComponent = Vue.extend({
template:'<div>This is my first component</div>'
});
注册组件:
Vue.component('firstcomponent',firstcomponent);
使用组件
<firstcomponent></firstcomponent>
学到的知识点:
- html自定义组件不区分大小写
组件:分三步
创建组件:
var myComponent = Vue.extend({
template:'<div>This is my first component</div>'
});
注册组件:
Vue.component('firstcomponent',firstcomponent);
使用组件
<firstcomponent></firstcomponent>
学到的知识点: