1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-09-08 11:26:24 +08:00
2019-08-13 22:42:41 +01:00

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>