组件
使用组件注册之前说过,我们可以用 Vue.extend() 创建一个组件构造器:var MyComponent = Vue.extend({ // 选项...})要把这个构造器用作组件,需要用 Vue.component(tag, constructor) 注册 :// 全局注册组件,tag 为 my-componentVue.component('my-component', MyComponent)对于自定义标签名字,Vue.js 不强制要求遵循 [W3C 规则](http://www.w3.
Xebcnor