vue命名规范 2020-03-12 本文已影响0人 chiugi 自用vue变量命名规范 props 驼峰式命名 <PopupWindow :title-text='hello world' /> props: { titleText: String } 事件 this.$emit('close-window') // 在父组件中 <popup-window @close-window='handleEvent()' /> 组件 组件文件 基础组件名 基础组件名 name PascalCase命名