Blame view

src/views/prod/create.vue 513 Bytes
a86b16bba   Adam   auto commit the c...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <template>
    <prod-detail :is-edit="false" />
  </template>
  
  <script>
  import ProdDetail from './components/ProdDetail'
  // HTML 中的标签名是大小写不敏感的,所以浏览器会把所有大写字符解释为小写字符。
  // 这意味着当你使用 DOM 中的模板时,
  // 使用驼峰命名法 的 prop 名需要使用其等价的短横线分隔命名方法或者全部使用小写。
  // 否者就会报上述错误。
  export default {
    name: 'CreateForm',
    components: { ProdDetail }
  }
  </script>