美文网首页
Vue组件名大小写

Vue组件名大小写

作者: 梁风有意 | 来源:发表于2018-09-19 15:09 被阅读0次

    vue定义组件名有两种格式
    1.kebab-case(短横线分隔命名)

    Vue.component('my-component-name',{/* */})
    使用的时候:
    <my-component-name></my-component-name>
    

    2.驼峰命名

    Vue.component('myComponentName',{/* */})
    使用的时候:
    因为html标签不区分大小写,所以只能使用短横线分隔来使用组件
    
    <my-component-name></my-component-name>
    

    相关文章

      网友评论

          本文标题:Vue组件名大小写

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