美文网首页
vue的组件使用方法

vue的组件使用方法

作者: chasing_dream | 来源:发表于2019-06-21 17:46 被阅读0次

    代码复用和抽象的主要形式是组件

    注册一个组件:

    Vue.component('my-component', {
      // 选项
    })
    

    组件在注册之后,便可以作为自定义元素 <my-component></my-component> 在一个实例的模板中使用。

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

    相关文章

      网友评论

          本文标题:vue的组件使用方法

          本文链接:https://www.haomeiwen.com/subject/ztzpcftx.html