1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08: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>