简单Vue
0 1

Vue官方的风格指南?请列举其中的一些规则 包含哪些要点?

【概念释义】

风格指南要点:组件多词名prop 详细定义v-for 必写 key勿 v-if 与 v-for 同元素组件 props 命名 camelCase路由懒加载scoped 样式单文件组件Vuex mutations 同步 等。

【基础使用】

javascript
props: {
  status: {
    type: String,
    required: true,
    validator: (v) => ["on", "off"].includes(v),
  },
},

登录查看完整 607

回答讨论

暂无讨论,登录后可抢先发言

本题库更多题目(50)