The following section explains the required steps to build the Vue TreeView component with its basic usage in step by step procedure.
You can use Vue CLI
to setup your vue applications.
To install Vue CLI use the following command.
npm install -g @vue/cli
Start a new project using below Vue CLI command.
npm install -g @vue/cli-init
vue init webpack-simple quickstart
cd quickstart
npm install
All the available Essential JS 2 packages are published in
npmjs.com
public registry.
You can choose the component that you want to install.
To install TreeView component, use the following command
npm install @syncfusion/ej2-vue-navigations --save
For Registering Vue Component two ways are available. They are as follows.
Import the TreeView Component Plugin from the EJ2 Vue Package and register the same using Vue.use() with TreeView Component Plugin as its argument.
Refer the code snippet given below.
import { TreeViewPlugin } from "@syncfusion/ej2-vue-navigations";
Vue.use(TreeViewPlugin);
Note : By Registering Component Plugin in Vue, all child directives are also globally registered.
Import the TreeView Component and TreeView Component Plugin from EJ2 Vue Package, register the same using the Vue.component() with name of TreeView Component from TreeView Component Plugin and the EJ2 Vue Component as its arguments.
Refer the code snippet given below.
import { TreeViewComponent, TreeViewPlugin } from '@syncfusion/ej2-vue-navigations';
Vue.component(TreeViewPlugin.name, TreeViewComponent);
Note: By using Vue.component(), only the EJ2 Vue Component is registered. Child directives needs to be registered separately.
Add the EJ2 Vue TreeView using <ejs-treeview>
to the <template>
section of the App.vue
file in src directory,
the content attribute of the TreeView component is provided as name in data option in the <script>
section.
<template>
<div class="control_wrapper">
<ejs-treeview id='treeview'></ejs-treeview>
</div>
</template>
<script>
import Vue from 'vue';
import { TreeViewPlugin } from "@syncfusion/ej2-vue-navigations";
Vue.use(TreeViewPlugin);
export default Vue.extend({
data: function() {
return {
};
}
});
</script>
Add TreeView and its dependency component’s styles as given below in <style>
section of the App.vue
file.
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-buttons/styles/material.css";
</style>
Note: If you want to refer the combined component styles, please make use of our CRG
(Custom Resource Generator) in your application.
TreeView can load data either from local data sources or remote data services. This can be done using the dataSource
property
that is a member of the fields property. The dataSource property supports
array of JavaScript objects and DataManager
. Here, an array of JSON values is passed to the TreeView component.
<template>
<div class="control_wrapper">
<ejs-treeview id='treeview' :fields='fields'></ejs-treeview>
</div>
</template>
<script>
import Vue from 'vue';
import { TreeViewPlugin } from "@syncfusion/ej2-vue-navigations";
Vue.use(TreeViewPlugin);
var data = [
{
nodeId: '01', nodeText: 'Music',
nodeChild: [
{ nodeId: '01-01', nodeText: 'Gouttes.mp3' }
]
},
{
nodeId: '02', nodeText: 'Videos', expanded: true,
nodeChild: [
{ nodeId: '02-01', nodeText: 'Naturals.mp4' },
{ nodeId: '02-02', nodeText: 'Wild.mpeg' },
]
},
{
nodeId: '03', nodeText: 'Documents',
nodeChild: [
{ nodeId: '03-01', nodeText: 'Environment Pollution.docx' },
{ nodeId: '03-02', nodeText: 'Global Water, Sanitation, & Hygiene.docx' },
{ nodeId: '03-03', nodeText: 'Global Warming.ppt' },
{ nodeId: '03-04', nodeText: 'Social Network.pdf' },
{ nodeId: '03-05', nodeText: 'Youth Empowerment.pdf' },
]
},
];
export default Vue.extend({
data: function() {
return {
fields: { dataSource: data, id: 'nodeId', text: 'nodeText', child: 'nodeChild' },
};
}
});
</script>
After completing the configuration required to render a basic TreeView, run the following command to display the output in your default browser.
npm run dev
<template>
<div id="app">
<div class="control_wrapper">
<ejs-treeview id='treeview' :fields="fields"></ejs-treeview>
</div>
</div>
</template>
<script>
import Vue from 'vue';
import { TreeViewPlugin } from "@syncfusion/ej2-vue-navigations";
Vue.use(TreeViewPlugin);
export default {
data () {
var dataSource = [
{
nodeId: '01', nodeText: 'Music',
nodeChild: [
{ nodeId: '01-01', nodeText: 'Gouttes.mp3' }
]
},
{
nodeId: '02', nodeText: 'Videos', expanded: true,
nodeChild: [
{ nodeId: '02-01', nodeText: 'Naturals.mp4' },
{ nodeId: '02-02', nodeText: 'Wild.mpeg' },
]
},
{
nodeId: '03', nodeText: 'Documents',
nodeChild: [
{ nodeId: '03-01', nodeText: 'Environment Pollution.docx' },
{ nodeId: '03-02', nodeText: 'Global Water, Sanitation, & Hygiene.docx' },
{ nodeId: '03-03', nodeText: 'Global Warming.ppt' },
{ nodeId: '03-04', nodeText: 'Social Network.pdf' },
{ nodeId: '03-05', nodeText: 'Youth Empowerment.pdf' },
]
}
];
return {
fields: { dataSource: dataSource, id: 'nodeId', text: 'nodeText', child: 'nodeChild' }
}
}
}
</script>
<style>
@import "../../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../../node_modules/@syncfusion/ej2-vue-navigations/styles/material.css";
.control_wrapper {
display: block;
max-width: 350px;
max-height: 350px;
margin: auto;
overflow: auto;
border: 1px solid #dddddd;
border-radius: 3px;
}
</style>
You can also explore our Vue TreeView example to knows how to present and manipulate data.