div
h2 Third Case
Tree(:value="treeData" ref="tree" :rootNode="{$droppable: false}")
div(slot-scope="{node, index, path, tree}")
b(v-if="node.children && node.children.length > 0" @click="tree.toggleFold(node, path)") {{node.$folded ? '+' : '-'}}
input(type="checkbox" :checked="node.$checked" @change="tree.toggleCheck(node, path)")
|
span {{node.text}}