加载中...

Vue学习笔记(一)

组件:分三步

创建组件:

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

注册组件:

Vue.component('firstcomponent',firstcomponent);

使用组件

<firstcomponent></firstcomponent>

学到的知识点:

  1. html自定义组件不区分大小写
posted @ 2016-12-15 02:30  水车  阅读(339)  评论(0编辑  收藏  举报