入门客AI创业平台(我带你入门,你带我飞行)
博文笔记

Vue.component使用注意事项

创建时间:2017-10-08 投稿人: 浏览次数:1334

Vue.component使用的时候并不是随便使用的,我们要遵循一个原则:

要在初始化根实例之前注册组件,例如;

<div id="example">
  <my-component></my-component>
</div>


// 注册
Vue.component("my-component", {
  template: "<div>A custom component!</div>"
})
// 创建根实例
new Vue({
  el: "#example"
})

渲染结果为:
<div id="example">
  <div>A custom component!</div>
</div>

有个先后,特别是我们用webpack搭建的模板,毕竟main.js就创建了根实例,需要特别注意
声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
  • 上一篇:没有了
  • 下一篇:没有了
未上传头像