create.vue 219 Bytes
<template>
  <face-star-detail :is-edit="false"/>
</template>

<script>
import FaceStarDetail from './components/FaceStarDetail'

export default {
  name: 'CreateFaceStar',
  components: { FaceStarDetail }
}
</script>