1
0
Fork 0
HANYANG_MES/show_dir/www/kadm2/menu/_backup/test.html

33 lines
619 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div id="app">
<tree
:data="treeData"
:options="treeOptions"
/>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/vue@3.2.39/dist/vue.global.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/liquor-tree/dist/liquor-tree.umd.js"></script>
<script>
new Vue.createApp({
el: '#app',
data() {
return {
treeData: [
// see above the format of data
],
treeOptions: {
miltiple: false
}
}
}
})
</script>