1.0.17 • Published 5 years ago

v-tree-data-table v1.0.17

Weekly downloads
55
License
MIT
Repository
github
Last release
5 years ago

Vuetify Tree Data Table

npm.io

Tree functionality added to the Vuetify Data Table. Supports DnD sorting and moving nodes to new parents.

You must have Vuetify loaded to use this component.

Usage

NPM

npm install v-tree-data-table

Yarn

yarn add v-tree-data-table

To use simply register the component with Vue

import TreeDataTable from 'v-tree-data-table';
Vue.component('v-tree-data-table', TreeDataTable);

Props

PropTypeRequiredUsage
headersArrayYesHeaders for the v-data-table
itemsArrayYesitems for the v-data-table, should contain tree data. (expanded, children, loaded, depth)
paginationObjectYesPagination object for the v-data-table
totalItemsNumberYestotal-items for v-data-table
loadingBooleanYesIf the data is being loaded
rowsPerPageItemsArrayNoPassed through to for v-data-table
rowsPerPageTextStringNoPassed through to for v-data-table
selectAllBoolean, StringNoselect-all for v-data-table
validDropFunctionNoFunction that returns true or false if it is a valid drop.

Emits

dblclick

When a row is double clicked

Arguments

event - Browser event node - Node that was clicked

contextmenu

Mouse right click

Arguments

event - Browser event node - Node that was clicked

load

Called when the data should be reloaded into the items property

Arguments

pagination - Pagination data from v-data-table

input

When a row is selected

Arguments

selected - Selected Node

drop

When a node is dropped

Arguments

node - Node that was dropped oldParent - The previous parent of the node parentNode - The new parent of the node previousSibling - The previous sibling of the node nextSibling - The next sibling of the node nodes - All nodes revert - Function to revert drop

node-toggle

When a node is toggled

Arguments

node - Node record that was toggled

Example

To run the example, simple clone down repo and open index.html in a browser.

License

Tree Data Table is open-sourced software licensed under the MIT license.