56 lines
1.1 KiB
Vue
56 lines
1.1 KiB
Vue
<template>
|
|
<div>
|
|
<tiny-button @click="boxVisibility = true"> 可拖拽弹窗 </tiny-button>
|
|
<tiny-dialog-box
|
|
draggable
|
|
v-model:visible="boxVisibility"
|
|
title="鼠标移入标题区域单击拖拽"
|
|
width="30%"
|
|
@drag-start="dragStart"
|
|
@drag-end="dragEnd"
|
|
@drag-move="dragMove"
|
|
>
|
|
<span>dialog-box内容</span>
|
|
<template #footer>
|
|
<tiny-button type="primary" @click="boxVisibility = false"> 确 定 </tiny-button>
|
|
</template>
|
|
</tiny-dialog-box>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { Button, DialogBox, Notify } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyButton: Button,
|
|
TinyDialogBox: DialogBox
|
|
},
|
|
data() {
|
|
return {
|
|
boxVisibility: false
|
|
}
|
|
},
|
|
methods: {
|
|
dragStart() {
|
|
Notify({
|
|
message: '拖拽开始',
|
|
position: 'top-right'
|
|
})
|
|
},
|
|
dragEnd() {
|
|
Notify({
|
|
message: '拖拽结束',
|
|
position: 'top-right'
|
|
})
|
|
},
|
|
dragMove() {
|
|
Notify({
|
|
message: '拖拽移动',
|
|
position: 'top-right'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|