feat: 客户端管理 表单

This commit is contained in:
dap
2024-09-12 14:41:28 +08:00
parent 1a8eeb2abe
commit aca098640a
6 changed files with 361 additions and 4 deletions

View File

@@ -1,9 +1,21 @@
<script setup lang="ts">
import CommonSkeleton from '#/views/common';
import { Page, useVbenDrawer } from '@vben/common-ui';
import clientDrawer from './client-drawer.vue';
const [ClientDrawer, drawerApi] = useVbenDrawer({
connectedComponent: clientDrawer,
});
function handleAdd() {
drawerApi.setData({ update: false });
drawerApi.open();
}
</script>
<template>
<div>
<CommonSkeleton />
</div>
<Page>
<a-button type="primary" @click="handleAdd">add</a-button>
<ClientDrawer />
</Page>
</template>