标签:区分大小写 创建 大小 html 学习笔记 template pre end htm
组件:分三步
创建组件:
var myComponent = Vue.extend({
template:‘<div>This is my first component</div>‘
});
注册组件:
Vue.component(‘firstcomponent‘,firstcomponent);
使用组件
<firstcomponent></firstcomponent>
学到的知识点:
标签:区分大小写 创建 大小 html 学习笔记 template pre end htm
原文地址:http://www.cnblogs.com/xuange306/p/6181787.html