Files
lina/src/layout/components/GenericCreateUpdatePage/index.vue
2020-10-21 12:49:21 +08:00

22 lines
476 B
Vue

<template>
<Page v-bind="$attrs">
<IBox>
<GenericCreateUpdateForm ref="createUpdateForm" v-bind="$attrs" v-on="$listeners" />
</IBox>
</Page>
</template>
<script>
import IBox from '@/components/IBox'
import Page from '@/layout/components/Page'
import GenericCreateUpdateForm from '../GenericCreateUpdateForm'
export default {
name: 'GenericCreateUpdatePage',
components: {
Page, IBox, GenericCreateUpdateForm
}
}
</script>
<style scoped>
</style>