Many other vue component libraries has this component!
like
element ui
http://element-cn.eleme.io/#/en-US/component/treeiview
https://www.iviewui.com/components/tree-enquasar framework
I use v-list do this current,but is not perfect plan
will generator tree-view component fast and perfect
Just maybe... use this as a basis
https://vuejs.org/v2/examples/tree-view.html
Some feature/demo that end user would like to have:
Possibly this component with its example can take reference from tree view in Clarify
Not really important but can become nice to have
Auto convert HTML that generated by Markdown into Tree View. For example
<template>
<v-tree-view>
{{list}}
</v-tree-view>
</template>
<scirpt>
import marked from 'marked'
export default {
data () {
return {
list: marked(`
- __parent__
- _child1_
- child2
- _child2_
- child1
- child2
`)
}
}
</script>
Another nice sample for this feature:
http://ej2.syncfusion.com/15.4.23/demos/#/material/treeview/checkbox.html
Since there's no tree view component for vuetify, what other options do we have if you want to emerge trreview with other vuetify components as much as possible?
Same question @hyounoo 馃槃
@Vincebe I had to do it myself https://www.npmjs.com/package/v-treeview
Thanks a lot @hyounoo !
Vooo Great! Thank you @hyounoo !
Checkout this post on veutify's medium
Tree View from MetroUI looks awesome too: https://metroui.org.ua/treeview.html
We need a beautiful Tree View :)
Most helpful comment
Tree View from MetroUI looks awesome too: https://metroui.org.ua/treeview.html
We need a beautiful Tree View :)