Drag and drop for q-table of quasar components
npm install quasar-ui-q-draggable-table

Compatible with Quasar UI v2 and Vue 3.
``bash`
npm install quasar-ui-q-draggable-table
Create and register a boot file:
Create in boot folder q-draggable-table.js`js
import { boot } from 'quasar/wrappers';
import qDraggableTable from 'quasar-ui-q-draggable-table';
import 'quasar-ui-q-draggable-table/dist/index.css';
export default boot(({ app }) => {
app.use(qDraggableTable);
});
`
Register in boot of quasr.conf.js "q-draggable-table"
`js`
module.exports = configure(function (ctx) {
return {
// ...
boot: ["q-draggable-table"],
// ...
}
})
Use directive `v-draggable-table` with q-table component
`vue`
options,
onDrop,
onDrag,
onShadowMove,
onOut,
}"
title="Drag columns"
:rows="rows"
:columns="columns"
row-key="name"
/>
| key | description | options |
|:-----------------|------------------------------------------------------------------------------------------------------------------------|------------------------------------|
| mode | Available mode for moving. Default: 'column' | 'column' / 'row' / 'free' / 'none' |dragHandler
| | Selector of the element being moved. Required for 'free' mode | string |onlyBody
| | If true, only main body of table is moved. Relevant for 'row' mode | boolean |fixFirstColumn
| | If true , all columns except the first one are moved . Relevant for 'column' mode | boolean |dragula
| | Adds dragula package options. Moves, accepts, and direction parameters are already in use. Redefine them with care | DragulaOptions |
#### Mode 'none'
In some cases, it may be necessary to disable table dragging. For example, when using grid mode, the table is missing and dragging will not work. Use the mode 'none' option
#### Options Reactivity
In general, changing an option does not cause a component change. Use the component's key to rerender with new options
`vue`
onDrop,
options,
}"
:key="options.mode"
/>
Hook that is triggered when an element is dragged
Hook that triggers when the shadow of element is moved
Hook that triggers when element goes outside the table
Note: Library does not redraw original component, but only represents indexes of elements being moved. Use hooks to rerender table. All indexes correspond to real cells of the table.
`vue
onDrop,
}"
title="Drag columns"
:rows="rows"
:columns="columns"
row-key="name"
/>
``