Files
ruoyi-plus-vben5/docs/src/demos/vben-modal/draggable/modal.vue

11 lines
215 B
Vue
Raw Normal View History

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