Vue.Draggable

[![CircleCI](https://circleci.com/gh/SortableJS/Vue.Draggable.svg?style=shield)](https://circleci.com/gh/SortableJS/Vue.Draggable) [![Coverage](https://codecov.io/gh/SortableJS/Vue.Draggable/branch/master/graph/badge.svg)](https://codecov.io/gh/SortableJS/Vue.Draggable) [![codebeat badge](https://codebeat.co/badges/7a6c27c8-2d0b-47b9-af55-c2eea966e713)](https://codebeat.co/projects/github-com-sortablejs-vue-draggable-master) [![GitHub open issues](https://img.shields.io/github/issues/SortableJS/Vue.Draggable.svg)](https://github.com/SortableJS/Vue.Draggable/issues?q=is%3Aopen+is%3Aissue) [![npm download](https://img.shields.io/npm/dt/vuedraggable.svg)](https://www.npmjs.com/package/vuedraggable) [![npm download per month](https://img.shields.io/npm/dm/vuedraggable.svg)](https://www.npmjs.com/package/vuedraggable) [![npm version](https://img.shields.io/npm/v/vuedraggable.svg)](https://www.npmjs.com/package/vuedraggable) [![MIT License](https://img.shields.io/github/license/SortableJS/Vue.Draggable.svg)](https://github.com/SortableJS/Vue.Draggable/blob/master/LICENSE) Vue component (Vue.js 2.0) or directive (Vue.js 1.0) allowing drag-and-drop and synchronization with view model array. Based on and offering all features of [Sortable.js](https://github.com/RubaXa/Sortable) ## For Vue 3 See [vue.draggable.next](https://github.com/SortableJS/vue.draggable.next) ## Demo ![demo gif](https://raw.githubusercontent.com/SortableJS/Vue.Draggable/master/example.gif) ## Live Demos https://sortablejs.github.io/Vue.Draggable/ https://david-desmaisons.github.io/draggable-example/ ## Features * Full support of [Sortable.js](https://github.com/RubaXa/Sortable) features: * Supports touch devices * Supports drag handles and selectable text * Smart auto-scrolling * Support drag and drop between different lists * No jQuery dependency * Keeps in sync HTML and view model list * Compatible with Vue.js 2.0 transition-group * Cancellation support * Events reporting any changes when full control is needed * Reuse existing UI library components (such as [vuetify](https://vuetifyjs.com), [element](http://element.eleme.io/), or [vue material](https://vuematerial.io) etc...) and make them draggable using `tag` and `componentData` props ## Backers Looking for backers! ## Donate Find this project useful? You can buy me a :coffee: or a :beer: [![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=GYAEKQZJ4FQT2¤cy_code=USD&source=url) ## Installation ### With npm or yarn ```bash yarn add vuedraggable npm i -S vuedraggable ``` **Beware it is vuedraggable for Vue 2.0 and not vue-draggable which is for version 1.0** ### with direct link ```html ``` [cf example section](https://github.com/SortableJS/Vue.Draggable/tree/master/example) ## For Vue.js 2.0 Use draggable component: ### Typical use: ``` html
{{element.name}}
``` .vue file: ``` js import draggable from 'vuedraggable' ... export default { components: { draggable, }, ... ``` ### With `transition-group`: ``` html
{{element.name}}
``` Draggable component should directly wrap the draggable elements, or a `transition-component` containing the draggable elements. ### With footer slot: ``` html
{{element.name}}
``` ### With header slot: ``` html
{{element.name}}
``` ### With Vuex: ```html ``` ```javascript computed: { myList: { get() { return this.$store.state.myList }, set(value) { this.$store.commit('updateList', value) } } } ``` ### Props #### value Type: `Array`
Required: `false`
Default: `null` Input array to draggable component. Typically same array as referenced by inner element v-for directive.
This is the preferred way to use Vue.draggable as it is compatible with Vuex.
It should not be used directly but only though the `v-model` directive: ```html ``` #### list Type: `Array`
Required: `false`
Default: `null` Alternative to the `value` prop, list is an array to be synchronized with drag-and-drop.
The main difference is that `list` prop is updated by draggable component using splice method, whereas `value` is immutable.
**Do not use in conjunction with value prop.** #### All sortable options New in version 2.19 Sortable options can be set directly as vue.draggable props since version 2.19. This means that all [sortable option](https://github.com/RubaXa/Sortable#options) are valid sortable props with the notable exception of all the method starting by "on" as draggable component expose the same API via events. kebab-case propery are supported: for example `ghost-class` props will be converted to `ghostClass` sortable option. Example setting handle, sortable and a group option: ```HTML ``` #### tag Type: `String`
Default: `'div'` HTML node type of the element that draggable component create as outer element for the included slot.
It is also possible to pass the name of vue component as element. In this case, draggable attribute will be passed to the create component.
See also [componentData](#componentdata) if you need to set props or event to the created component. #### clone Type: `Function`
Required: `false`
Default: `(original) => { return original;}`
Function called on the source component to clone element when clone option is true. The unique argument is the viewModel element to be cloned and the returned value is its cloned version.
By default vue.draggable reuses the viewModel element, so you have to use this hook if you want to clone or deep clone it. #### move Type: `Function`
Required: `false`
Default: `null`
If not null this function will be called in a similar way as [Sortable onMove callback](https://github.com/RubaXa/Sortable#move-event-object). Returning false will cancel the drag operation. ```javascript function onMoveCallback(evt, originalEvent){ ... // return false; — for cancel } ``` evt object has same property as [Sortable onMove event](https://github.com/RubaXa/Sortable#move-event-object), and 3 additional properties: - `draggedContext`: context linked to dragged element - `index`: dragged element index - `element`: dragged element underlying view model element - `futureIndex`: potential index of the dragged element if the drop operation is accepted - `relatedContext`: context linked to current drag operation - `index`: target element index - `element`: target element view model element - `list`: target list - `component`: target VueComponent HTML: ```HTML ``` javascript: ```javascript checkMove: function(evt){ return (evt.draggedContext.element.name!=='apple'); } ``` See complete example: [Cancel.html](https://github.com/SortableJS/Vue.Draggable/blob/master/examples/Cancel.html), [cancel.js](https://github.com/SortableJS/Vue.Draggable/blob/master/examples/script/cancel.js) #### componentData Type: `Object`
Required: `false`
Default: `null`
This props is used to pass additional information to child component declared by [tag props](#tag).
Value: * `props`: props to be passed to the child component * `attrs`: attrs to be passed to the child component * `on`: events to be subscribe in the child component Example (using [element UI library](http://element.eleme.io/#/en-US)): ```HTML
{{e.description}}
``` ```javascript methods: { handleChange() { console.log('changed'); }, inputChanged(value) { this.activeNames = value; }, getComponentData() { return { on: { change: this.handleChange, input: this.inputChanged }, attrs:{ wrap: true }, props: { value: this.activeNames } }; } } ``` ### Events * Support for Sortable events: `start`, `add`, `remove`, `update`, `end`, `choose`, `unchoose`, `sort`, `filter`, `clone`
Events are called whenever onStart, onAdd, onRemove, onUpdate, onEnd, onChoose, onUnchoose, onSort, onClone are fired by Sortable.js with the same argument.
[See here for reference](https://github.com/RubaXa/Sortable#event-object-demo) Note that SortableJS OnMove callback is mapped with the [move prop](https://github.com/SortableJS/Vue.Draggable/blob/master/README.md#move) HTML: ```HTML ``` * change event `change` event is triggered when list prop is not null and the corresponding array is altered due to drag-and-drop operation.
This event is called with one argument containing one of the following properties: - `added`: contains information of an element added to the array - `newIndex`: the index of the added element - `element`: the added element - `removed`: contains information of an element removed from to the array - `oldIndex`: the index of the element before remove - `element`: the removed element - `moved`: contains information of an element moved within the array - `newIndex`: the current index of the moved element - `oldIndex`: the old index of the moved element - `element`: the moved element ### Slots Limitation: neither header or footer slot works in conjunction with transition-group. #### Header Use the `header` slot to add none-draggable element inside the vuedraggable component. Important: it should be used in conjunction with draggable option to tag draggable element. Note that header slot will always be added before the default slot regardless its position in the template. Ex: ``` html
{{element.name}}
``` #### Footer Use the `footer` slot to add none-draggable element inside the vuedraggable component. Important: it should be used in conjunction with draggable option to tag draggable elements. Note that footer slot will always be added after the default slot regardless its position in the template. Ex: ``` html
{{element.name}}
``` ### Gotchas - Vue.draggable children should always map the list or value prop using a v-for directive * You may use [header](https://github.com/SortableJS/Vue.Draggable#header) and [footer](https://github.com/SortableJS/Vue.Draggable#footer) slot to by-pass this limitation. - Children elements inside v-for should be keyed as any element in Vue.js. Be carefull to provide revelant key values in particular: * typically providing array index as keys won't work as key should be linked to the items content * cloned elements should provide updated keys, it is doable using the [clone props](#clone) for example ### Example * [Clone](https://sortablejs.github.io/Vue.Draggable/#/custom-clone) * [Handle](https://sortablejs.github.io/Vue.Draggable/#/handle) * [Transition](https://sortablejs.github.io/Vue.Draggable/#/transition-example-2) * [Nested](https://sortablejs.github.io/Vue.Draggable/#/nested-example) * [Table](https://sortablejs.github.io/Vue.Draggable/#/table-example) ### Full demo example [draggable-example](https://github.com/David-Desmaisons/draggable-example) ## For Vue.js 1.0 [See here](documentation/Vue.draggable.for.ReadME.md) ```