Files
admin-vben5/playground/src/views/examples/drawer/dynamic-demo.vue
2025-06-18 11:03:42 +08:00

32 lines
683 B
Vue

<script lang="ts" setup>
import { useVbenDrawer } from '@vben/common-ui';
import { Button, message } from 'ant-design-vue';
const [Drawer, drawerApi] = useVbenDrawer({
onCancel() {
drawerApi.close();
},
onConfirm() {
message.info('onConfirm');
// drawerApi.close();
},
title: '动态修改配置示例',
});
// const state = drawerApi.useStore();
function handleUpdateTitle() {
drawerApi.setState({ title: '内部动态标题' });
}
</script>
<template>
<Drawer>
<div class="flex-col-center">
<Button class="mb-3" type="primary" @click="handleUpdateTitle()">
内部动态修改标题
</Button>
</div>
</Drawer>
</template>