create.vue 513 Bytes
<template>
  <prod-detail :is-edit="false" />
</template>

<script>
import ProdDetail from './components/ProdDetail'
// HTML 中的标签名是大小写不敏感的,所以浏览器会把所有大写字符解释为小写字符。
// 这意味着当你使用 DOM 中的模板时,
// 使用驼峰命名法 的 prop 名需要使用其等价的短横线分隔命名方法或者全部使用小写。
// 否者就会报上述错误。
export default {
  name: 'CreateForm',
  components: { ProdDetail }
}
</script>