0.1.4 • Published 4 years ago

vue-kityminder-editor v0.1.4

Weekly downloads
37
License
ISC
Repository
github
Last release
4 years ago

main.js

import 'vue-kityminder-editor/lib/kityMinder.css'
import kityMinder from 'vue-kityminder-editor'

Vue.use(kityMinder)

组件中使用

<kityMinder :importJson="importJson" @minder="minderHandle" />

测试数据

importJson: { 
    'data': { 'text': 'Design project', 'id': 2 },
    'children': [
        { 
            'data': { 'text': 'Designsy', 'id': 3 },
            'children': [
                { 
                  'data': { 'text': 'Designsy', 'id': 4 },
                  'children': [
                    { 'data': { 'text': 'Designsy', 'id': 5 } },
                    { 'data': { 'text': 'Designsy', 'id': 5 } },
                    { 'data': { 'text': 'Designsy', 'id': 5 } },
                  ]
                },
                { 'data': { 'text': 'Designsy', 'id': 5 } },
                { 'data': { 'text': 'Designsy', 'id': 62 } },
                { 'data': { 'text': 'Designsy', 'id': 73 } },
                { 'data': { 'text': 'Designsy', 'id': 84 } }
            ]
        },
        { 'data': { 'text': 'Designsy', 'id': 9 } },
        { 'data': { 'text': 'Designsy', 'id': 102 } },
        { 'data': { 'text': 'Designsy', 'id': 113 } },
        { 'data': { 'text': 'Designsy', 'id': 124 } }
    ]
}