28 lines
332 B
Vue
28 lines
332 B
Vue
<template>
|
|
<article>
|
|
<div
|
|
ref="target"
|
|
v-drag:target.translate
|
|
class="target"
|
|
/>
|
|
</article>
|
|
</template>
|
|
|
|
<script>
|
|
import drag from 'veui/directives/drag'
|
|
|
|
export default {
|
|
directives: {
|
|
drag
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.target {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: #e7e7e7;
|
|
}
|
|
</style>
|