join_admin/src/views/example/create.vue

14 lines
214 B
Vue
Raw Normal View History

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