Vue学习笔记(一)

组件:分三步

创建组件:

var myComponent = Vue.extend({
template:'<div>This is my first component</div>'
});

注册组件:

Vue.component('firstcomponent',firstcomponent);

使用组件

<firstcomponent></firstcomponent>

学到的知识点:

  1. html自定义组件不区分大小写
原文地址:https://www.cnblogs.com/xuange306/p/6181787.html