Files
TakeoutSaaS.TenantUI/docs/src/demos/vben-modal/draggable/modal.vue
2026-01-29 04:21:46 +00:00

11 lines
215 B
Vue

<script lang="ts" setup>
import { useVbenModal } from '@vben/common-ui';
const [Modal] = useVbenModal({
draggable: true,
});
</script>
<template>
<Modal title="拖拽示例"> modal content </Modal>
</template>