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
Steps:
distance="1"
<template> <div class="flex gap-2 m-4"> <SlickList class="w-32 flex flex-col gap-2" helper-class="bg-opacity-70" v-model:list="list" :distance="1" > <SlickItem class="p-2 bg-blue-500 text-white" v-for="(item, index) of list" :key="item" :index="index" >{{ item }}</SlickItem > </SlickList> </div> </template> <script setup> import { ref } from 'vue'; import { SlickList, SlickItem } from 'vue-slicksort'; const list = ref([1, 2, 3]); </script>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps:
distance="1"
2022-03-14.01.25.49.mp4
The text was updated successfully, but these errors were encountered: