14 lines
214 B
Vue
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>
|
||
|
|