join_admin/src/views/incentives/create.vue

14 lines
214 B
Vue
Raw Normal View History

2020-01-03 12:33:47 +00:00
<template>
<article-detail :is-edit="false" />
</template>
<script>
import ArticleDetail from './components/ArticleDetail'
export default {
name: 'CreateArticle',
components: { ArticleDetail }
}
</script>