mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
14 lines
207 B
Vue
14 lines
207 B
Vue
<template>
|
|
<article-detail :is-edit="true"/>
|
|
</template>
|
|
|
|
<script>
|
|
import ArticleDetail from './components/ArticleDetail'
|
|
|
|
export default {
|
|
name: 'EditForm',
|
|
components: { ArticleDetail }
|
|
}
|
|
</script>
|
|
|