Files
element-plus/docs/examples/tree/checking-tree.vue
知晓同丶 3b8a590baf docs: improve examples layout for narrow screens (#21489)
* docs: improve examples layout for narrow screens

* docs: style related

* style: [statistic] use utilities

* style: [input] remove deep

* style: [transitions] change style

* refactor: [date-picker-panel] narrow refactor
2025-08-21 10:22:05 +02:00

120 lines
2.3 KiB
Vue

<template>
<el-tree
ref="treeRef"
style="max-width: 600px"
:data="data"
show-checkbox
default-expand-all
node-key="id"
highlight-current
:props="defaultProps"
/>
<div class="flex flex-wrap gap-1 mt-2">
<el-button class="!ml-0" @click="getCheckedNodes">get by node</el-button>
<el-button class="!ml-0" @click="getCheckedKeys">get by key</el-button>
<el-button class="!ml-0" @click="setCheckedNodes">set by node</el-button>
<el-button class="!ml-0" @click="setCheckedKeys">set by key</el-button>
<el-button class="!ml-0" @click="resetChecked">reset</el-button>
</div>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
import type { RenderContentContext, TreeInstance } from 'element-plus'
interface Tree {
id: number
label: string
children?: Tree[]
}
type Node = RenderContentContext['node']
const treeRef = ref<TreeInstance>()
const getCheckedNodes = () => {
console.log(treeRef.value!.getCheckedNodes(false, false))
}
const getCheckedKeys = () => {
console.log(treeRef.value!.getCheckedKeys(false))
}
const setCheckedNodes = () => {
treeRef.value!.setCheckedNodes(
[
{
id: 5,
label: 'Level two 2-1',
},
{
id: 9,
label: 'Level three 1-1-1',
},
] as Node[],
false
)
}
const setCheckedKeys = () => {
treeRef.value!.setCheckedKeys([3], false)
}
const resetChecked = () => {
treeRef.value!.setCheckedKeys([], false)
}
const defaultProps = {
children: 'children',
label: 'label',
}
const data: Tree[] = [
{
id: 1,
label: 'Level one 1',
children: [
{
id: 4,
label: 'Level two 1-1',
children: [
{
id: 9,
label: 'Level three 1-1-1',
},
{
id: 10,
label: 'Level three 1-1-2',
},
],
},
],
},
{
id: 2,
label: 'Level one 2',
children: [
{
id: 5,
label: 'Level two 2-1',
},
{
id: 6,
label: 'Level two 2-2',
},
],
},
{
id: 3,
label: 'Level one 3',
children: [
{
id: 7,
label: 'Level two 3-1',
},
{
id: 8,
label: 'Level two 3-2',
},
],
},
]
</script>