mirror of
https://github.com/jumpserver/lina.git
synced 2026-01-15 14:24:39 +00:00
22 lines
476 B
Vue
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>
|