mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-14 10:00:58 +08:00

* perf: change to import-x * feat: add rules * chore: fix rule * chore: fix * chore: fix * chore: fix * style: `pnpm lint:fix` * Revert "style: `pnpm lint:fix`" This reverts commit db0116a288299c507e3cfc4d7a22e2207265d920. * Revert "chore: fix" This reverts commit 69c82a90c01525e38180be4c21e8ef5602512318. * chore: fix * style: `pnpm lint:fix` * fix: lint * chore: `pnpm format`
120 lines
2.2 KiB
Vue
120 lines
2.2 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="mt-2">
|
|
<el-button @click="getCheckedNodes">get by node</el-button>
|
|
<el-button @click="getCheckedKeys">get by key</el-button>
|
|
<el-button @click="setCheckedNodes">set by node</el-button>
|
|
<el-button @click="setCheckedKeys">set by key</el-button>
|
|
<el-button @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>
|