mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-09-10 12:50:38 +08:00
14 lines
226 B
Vue
14 lines
226 B
Vue
<template>
|
|
<article-detail :is-edit='false'></article-detail>
|
|
</template>
|
|
|
|
<script>
|
|
import ArticleDetail from './components/ArticleDetail'
|
|
|
|
export default {
|
|
name: 'createForm',
|
|
components: { ArticleDetail }
|
|
}
|
|
</script>
|
|
|