You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
458 B
25 lines
458 B
<template>
|
|
<div>
|
|
<div class="tip-row">
|
|
可拖拽的dialog
|
|
</div>
|
|
|
|
<el-button @click="value = true">打开dialog</el-button>
|
|
|
|
<el-dialog v-drag-dialog :visible.sync="value" title="我可以拖动">
|
|
<div>蛤蛤</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "dragDialogPage",
|
|
|
|
data() {
|
|
return {
|
|
value: false
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|