javascript - 如何用Vue写完组件之后,只在部分传统html页面使用?
为情所困
为情所困 2017-06-12 09:28:18
0
2
681

1 现有使用vue写好的组件 example
2 如果在app.js全局注册的话,任何一个html页面可以正常使用
3 但是假如这个组件只在1个页面使用,如何在这个页面局部注册这个组件?

为情所困
为情所困

全部回复(2)
某草草

就在你的传统页面里实例化vue,引入你的组件,注册在当前实例化的vue里呗

var Child = {
  template: '<p>A custom component!</p>'
}
new Vue({
  // ...
  components: {
    // <my-component> 将只在父模板可用
    'my-component': Child
  }
})
習慣沉默

你需要熟读Vue文档3~4遍 局部注册

import YourComponent from 'your-component';
export default{
    components: { YourComponent }
}
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板