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

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

export default {
  name: 'CreatePush',
  components: { PushDetail }
}
</script>