We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using drag handles I'd expect the text inside an element (tape name in example below) to be selectable, but it's not.
<script setup lang="ts"> import { useDragAndDrop } from '@formkit/drag-and-drop/vue'; const [parent, tapes] = useDragAndDrop( [ 'Depeche Mode', 'Duran Duran', 'Pet Shop Boys', 'Kraftwerk', 'Tears for Fears', 'Spandau Ballet', ], { dragHandle: '.drag-handle' } ); </script> <template> <ul ref="parent"> <li v-for="tape in tapes" :key="tape" class="cassette"> <span class="drag-handle">::</span> <span>{{ tape }}</span> </li> </ul> </template>
Reproduction link: https://stackblitz.com/edit/vitejs-vite-adtpwqwq?file=src%2FApp.vue&terminal=dev (using v0.4.1)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using drag handles I'd expect the text inside an element (tape name in example below) to be selectable, but it's not.
Reproduction link: https://stackblitz.com/edit/vitejs-vite-adtpwqwq?file=src%2FApp.vue&terminal=dev (using v0.4.1)
The text was updated successfully, but these errors were encountered: