draggable component for vue
npm install vuedraggable-nextfixtag and componentData props
bash
yarn add vuedraggable@next
npm i -S vuedraggable@next
`
$3
`html
`
cf example section
Typical use:
` html
v-model="myArray"
group="people"
@start="drag=true"
@end="drag=false"
item-key="id">
{{element.name}}
`
` js
import draggable from 'vuedraggable'
...
export default {
components: {
draggable,
},
data() {
return {
drag: false,
}
},
...
`
The item slot should be used to display items of the list. It receives the element value and the element index as slot-props.
$3
` html
{{element.name}}
`
$3
` html
{{element.name}}
`
$3
` html
{{element.name}}
`
$3
`html
`
`javascript
computed: {
myList: {
get() {
return this.$store.state.myList
},
set(value) {
this.$store.commit('updateList', value)
}
}
}
`
$3
Breaking changes:
1) Use item slot instead of default to display elements
2) Provide a key for items using itemKey props
From:
` html
{{element.name}}
`
To:
` html
{{element.name}}
`
Breaking changes:
3) When using transition, you should now use the tag props and componentData to create the transition
From
` html
{{element.name}}
`
to
` html
{{element.name}}
`
$3
#### modelValue
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 modelValue 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 modelValue is immutable.
Do not use in conjunction with modelValue prop.
#### itemKey
Type: String or Function
Required: true
The property to be used as the element key. Alternatively a function receiving an element of the list and returning its key.
#### All sortable options
Sortable options can be set directly as vue.draggable props since version 2.19.
This means that all sortable option 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 property are supported: for example ghost-class props will be converted to ghostClass sortable option.
Example setting handle, sortable and a group option:
`HTML
v-model="list"
handle=".handle"
:group="{ name: 'people', pull: 'clone', put: false }"
ghost-class="ghost"
:sort="false"
@change="log"
>
`
#### 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 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.
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, 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, cancel.js
#### componentData
Type: Object
Required: false
Default: null
This props is used to pass additional information to child component declared by tag props.
Value: an object corresponding to the attributes, props and events we would pass to the component.
Example (using element UI library):
`HTML
{{element.description}}
`
`javascript
methods: {
handleChange() {
console.log('changed');
},
inputChanged(value) {
this.activeNames = value;
},
getComponentData() {
return {
onChange: this.handleChange,
onInput: this.inputChanged,
wrap: true,
value: this.activeNames
};
}
}
`
$3
* 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
Note that SortableJS OnMove callback is mapped with the move prop
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
$3
#### item
The item slot is used to display one element of the list. Vue.draggable will iterate the list and call this slot for each element.
Slot props:
- element the element in the list
- index the element index
It is the only required slot.
`html
{{index}} - {{element.name}}
`
#### Header
Use the header slot to add none-draggable element inside the vuedraggable component.
Ex:
` html
{{element.name}}
`
#### Footer
Use the footer slot to add none-draggable element inside the vuedraggable component.
Ex:
` html
{{element.name}}
``