1.0.3 • Published 5 years ago
tree-app v1.0.3
tree-app
Demo
https://ishimitsu14.github.io/tree-app/
Install library
npm install --save tree-appThen, import and register the component
import Vue from "vue";
import TreeApp from 'tree-app';
import TreeApp from 'tree-app/lib/tree-app.css';
Vue.component('tree-app', TreeApp);Props
<tree :parent-tree="tree" :leader-list="leaderList" :is-show-controls="true"/>Parent Tree
| Prop | Type | Example Value | isRequired |
|---|---|---|---|
| id | Number | 1 | true |
| leaderId | Number | 1 | true |
| name | String | John Conor | true |
| position | String | Owner | true |
| number | Number | 10 | false |
| second_position | String | Holder | false |
| description | String | Some description | false |
| color | String | #E8C567 | true |
| type | Number | 1 | true |
| children | Array | false | |
| staff | Array | false |
Staff
| Prop | Type | Example Value | isRequired |
|---|---|---|---|
| id | Number | 1 | true |
| src | String | https://i.ibb.co/6Fjxq6D/user1.jpg | false |
| name | String | Jessica Alba | true |
| phone | String | +7 (999) 999-99-99 | true |
| additional | Object | { label: 'Telegram', value: '+7 (999) 999-99-99' } | false |
Type can be: 1, 2, 3, 4, 5.
Example:
{
id: 2,
leaderId: 2,
name: 'Sara Conor',
position: 'General Manager',
second_position: 'Leader',
color: '#E8C567',
type: 2,
children: [
{
id: 3,
leaderId: 3,
name: 'Jonh Conor',
position: 'Manager`s Assistant',
second_position: 'Assistant Manager',
color: '#FFFFFF',
type: 3,
children: [...]
staff: [
{
id: 4,
src: 'https://i.ibb.co/88YjHBT/user4.png',
name: 'Петров Иван Николаевич',
phone: '+7 (902) 789-09-08',
additional: [
{ label: 'Telegram', value: '+7 (902) 789-09-08' },
{ label: 'Дата рождения', value: '01.02.1998' },
],
},
]
}
],
}Leader List
| Prop | Type | Example Value | isRequired |
|---|---|---|---|
| name | string | John Conor | true |
| id | number | 1 | true |
Must be array, used for 'leader' in change and add modals
Event
| Event | Return | Description |
|---|---|---|
| onReady | null | Emit when component is mounted |
| onDelete | Id of item | Emit when deleted item |
| onAdd | Added item | Emit when added item |
| onEdit | Changed item | Emit when edited item |
| onUpdateTree | Changed tree | Emit when tree is changed |
| onOpenUserProfile | Id of user | Emit when click on user open user profile |
1.0.2
5 years ago
1.0.3
5 years ago
1.0.1
5 years ago
1.0.0
5 years ago
0.2.5
5 years ago
0.2.3
5 years ago
0.2.4
5 years ago
0.2.1
5 years ago
0.2.0
5 years ago
0.1.8
5 years ago
0.1.7
5 years ago
0.1.9
5 years ago
0.1.4
5 years ago
0.2.2
5 years ago
0.1.6
5 years ago
0.1.3
5 years ago
0.1.2
5 years ago
0.1.1
5 years ago
0.1.0
5 years ago