tree-component
A reactjs, angular and vuejs tree component.
features
- vuejs component
- reactjs component
- angular component
- open and close
- select and deselect
- disabled
- loading
- highlighted
- checkbox
- custom icon or no icon
- drag and drop
- no dots
- large and small
- default and dark theme
- contextmenu(vuejs and reactjs only)
- node id
- custom node(vuejs and reactjs only)
link css
vuejs component
npm i tree-vue-component
or
the online demo: https://plantain-00.github.io/tree-component/packages/vue/demo
reactjs component
npm i tree-react-component
or
the online demo: https://plantain-00.github.io/tree-component/packages/react/demo
angular component
npm i tree-angular-component
the online demo: https://plantain-00.github.io/tree-component/packages/angular/demo/jit
the AOT online demo: https://plantain-00.github.io/tree-component/packages/angular/demo/aot
properties and events of the component
name | type | description |
---|---|---|
data | TreeData[] | the data of the tree |
checkbox | boolean? | show checkbox for node |
draggable | boolean? | whether the node is draggable |
nodots | boolean? | the tree will have no dots |
size | string? | can also be "large", "small" |
theme | string? | can be "default"(the default theme), "dark" |
dropAllowed | (dropData: common.DropData) => boolean | optional, a function to show whether the drop action is allowed |
zindex | number? | z-index of contextmenu |
preid | string? | the node id prefix, eg: if preid = "test_" , then a node's id can be test_1-2-3 |
toggle | (eventData: EventData) => void | triggered when opening or closing a node |
change | (eventData: EventData) => void | triggered when selecting or deselecting a node |
drop | (dropData: DropData) => void | triggered when drag a node, then drop it |