mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
* refactor: Adjust the example directory structure * perf form demo * refine editor-slide-upload css * refine demo
14 lines
223 B
Vue
14 lines
223 B
Vue
<template>
|
|
<article-detail :is-edit='true'></article-detail>
|
|
</template>
|
|
|
|
<script>
|
|
import ArticleDetail from './components/ArticleDetail'
|
|
|
|
export default {
|
|
name: 'editForm',
|
|
components: { ArticleDetail }
|
|
}
|
|
</script>
|
|
|