join_admin/src/views/example/create.vue
2019-12-03 19:03:25 +01:00

14 lines
214 B
Vue

<template>
<article-detail :is-edit="false" />
</template>
<script>
import ArticleDetail from './components/ArticleDetail'
export default {
name: 'CreateArticle',
components: { ArticleDetail }
}
</script>