v-draggable
Function Introduction
Makes elements draggable
Example
Drag me
Usage
typescript
<script setup lang="ts"></script>
<template>
<div
v-draggable
:style="{
width: '100px',
height: '100px',
background: 'blue',
borderRadius: '50px',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
transform: 'translateX(50px)'
}"
>
Drag me
</div>
</template>