mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-09-08 11:26:24 +08:00
14 lines
208 B
Vue
14 lines
208 B
Vue
<template>
|
|
<account-detail :is-edit="true" />
|
|
</template>
|
|
|
|
<script>
|
|
import AccountDetail from './components/AccountDetail'
|
|
|
|
export default {
|
|
name: 'EditForm',
|
|
components: { AccountDetail }
|
|
}
|
|
</script>
|
|
|