## Developer guide for `` component ### Folder Structure From Laravel Application - resources - js - core - components - organization-chart - OrganizationChart.Vue ### Register ```js Vue.component("app-organization-chart", require('./components/organization-chart/OrganizationChart').default); ``` ### Props 1. chartData - `type` : `Object` - `required` : `true` ##Example ``` { 'id': '5', 'name': 'Hei Hei', 'title': 'senior engineer', 'children': [ {'id': '6', 'name': 'Pang Pang', 'title': 'engineer'}, {'id': '7', 'name': 'Xiang Xiang', 'title': 'UE engineer'} ] } ``` 2. height - `type` : `Number` - `default` : `530` 3. druggable - `type` : `Boolean` - `default` : `false` ###Usages - Example of using organization component ``` ```