Vue中 几个常用的命名规范

Posted wjyz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue中 几个常用的命名规范相关的知识,希望对你有一定的参考价值。

1,组件名

  官方推荐的组件名是 每个单词首字母大写(PascalCase) 或者 全小写用 - 连接(kebab-case) 。 在DOM中使用的时候, 改为全小写, 单词之间用 - 连接

  

Vue.component(‘MyComponent‘, {});    或者      Vue.component(‘my-component‘, {});
import MyComponent from ‘MyComponent.vue‘; export
default { name: ‘MyComponent‘ } 在DOM中使用的时候, <my-component></my-component>

 

2,props

  声明 prop的时候, 使用驼峰命名(myProps), 模板中使用的时候, 用 - 连接(my-props)

props: {
    myProps: {}
}

<my-component :my-props="abc"></my-component>

 

3,自定义事件名

  因为html对大小写不敏感,所以大写的都会被转为小写的。 所以推荐 都用 -连接来命名。

this.$emit(‘my-event‘);

<my-component @my-event="abc"></my-component>

 

  

以上是关于Vue中 几个常用的命名规范的主要内容,如果未能解决你的问题,请参考以下文章

go语言代码规范指南

前端1.学习了一段时间的vue,总结一下Vue书写规范

可能是史上最全 Vue 前端代码风格指南

JavaScript 代码规范

Vue实战Vue开发中的的前端代码风格规范

团队开发前端VUE项目代码规范