1.0.2 • Published 6 years ago

@gurinder/vue-sortable v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

@gurinder/vue-sortable

Inspired by Adam Wathan https://www.youtube.com/watch?v=jR3R_m5FPRc

HTML

<ul slot-scope="{ items }">
    <vue-sortable-item v-for="(document, index) in items" :key="document.id">
        <li>
            <p v-tex="document.title"></p>

            <vue-sortable-handle>
                <button type="button" class="handle">button</button>
            </vue-sortable-handle>
        </li>
    </vue-sortable-item>
</ul>    

JS

import {SortableList, SortableItem, SortableHandle} from '@gurinder/vue-sortable'

Vue.components('sortable-list', SortableList);
Vue.components('sortable-item', SortableItem);
Vue.components('sortable-handle', SortableHandle);
1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago