element-plus/ssr-testing/cases/tree.vue
Xc 0bdd0fa7ea
docs: [tree-select] clean redundant code (#7029)
Co-authored-by: xiaochenchen <xiaochen.chen@igg.com>
2022-04-07 21:07:40 +08:00

36 lines
555 B
Vue

<template>
<el-tree :data="data" :props="defaultProps" @node-click="handleNodeClick" />
</template>
<script lang="ts" setup>
interface Tree {
label: string
children?: Tree[]
}
const handleNodeClick = (data: Tree) => {
console.log(data)
}
const data: Tree[] = [
{
label: 'Level one 1',
children: [
{
label: 'Level two 1-1',
children: [
{
label: 'Level three 1-1-1',
},
],
},
],
},
]
const defaultProps = {
children: 'children',
label: 'label',
}
</script>