2020-08-13 11:47:56 +08:00
|
|
|
<template>
|
|
|
|
<article>
|
|
|
|
<div
|
|
|
|
ref="target"
|
|
|
|
v-drag:target.translate
|
|
|
|
class="target"
|
|
|
|
/>
|
|
|
|
</article>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-09-17 19:41:59 +08:00
|
|
|
import { drag } from 'veui'
|
2020-08-13 11:47:56 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
directives: {
|
|
|
|
drag
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2021-09-15 20:03:51 +08:00
|
|
|
<style lang="less" scoped>
|
2020-08-13 11:47:56 +08:00
|
|
|
.target {
|
2021-09-15 20:03:51 +08:00
|
|
|
width: 80px;
|
|
|
|
height: 80px;
|
2021-09-15 20:05:02 +08:00
|
|
|
background: #e7e7e7;
|
2020-08-13 11:47:56 +08:00
|
|
|
}
|
|
|
|
</style>
|