travel/admin/src/views/example/create.vue

14 lines
214 B
Vue
Raw Normal View History

2024-06-24 11:52:30 +08:00
<template>
<article-detail :is-edit="false" />
</template>
<script>
import ArticleDetail from './components/ArticleDetail'
export default {
name: 'CreateArticle',
components: { ArticleDetail }
}
</script>