TreeView Overview
The TreeView displays hierarchical data in a traditional tree structure.
It supports user interaction through mouse or touch events and performs re-ordering operations by using the drag-and-drop functionality.
The TreeView wrapper for Vue is a client-side wrapper for the Kendo UI TreeView widget.
Basic Usage
The following example demonstrates how to initialize the TreeView.
Installation
To initialize the TreeView, either:
Initializing with Webpack
-
Install Kendo UI and add a theme.
npm install --save @progress/kendo-ui npm install --save @progress/kendo-theme-default
-
Install the Kendo UI TreeView package for Vue.
npm install --save @progress/kendo-treeview-vue-wrapper
-
Import the Kendo UI packages to the App component. If you use the Kendo UI components more than once in your application, add all Kendo UI-related files to the
main.js
file. If you use the Kendo UI components once in your application, add the Kendo UI-related files the component where they will be referred.import '@progress/kendo-ui' // This will import the entire Kendo UI library // As an alternative, you could import only the scripts that are used by a specific widget: // import '@progress/kendo-ui/js/kendo.treeview' // Imports only the TreeView script and its dependencies import '@progress/kendo-theme-default/dist/all.css' import { TreeView, TreeViewItem, TreeViewInstaller } from '@progress/kendo-treeview-vue-wrapper' Vue.use(TreeViewInstaller) new Vue({ el: '#app', components: { TreeView } })
Functionality and Features
- Data binding
- Dragging and dropping
- Animation effects
- Icons in TreeView
- Checkboxes
- Templates
- Keyboard navigation
- RTL support
Events
The following example demonstrates basic TreeView events. You can subscribe to all TreeView events by the handler name.