mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-15 03:06:25 +08:00

* style(eslint-config): add rules to restrict the imports of element-plus * chore: added validation for tsx files * chore: revert the shell
40 lines
760 B
Vue
40 lines
760 B
Vue
<template>
|
|
<el-tree style="max-width: 600px" :props="props" :load="loadNode" lazy />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import type { LoadFunction } from 'element-plus'
|
|
|
|
interface Tree {
|
|
name: string
|
|
leaf?: boolean
|
|
}
|
|
|
|
const props = {
|
|
label: 'name',
|
|
children: 'zones',
|
|
isLeaf: 'leaf',
|
|
}
|
|
|
|
let time = 0
|
|
const loadNode: LoadFunction = (node, resolve, reject) => {
|
|
if (node.level === 0) {
|
|
return resolve([{ name: 'region' }])
|
|
}
|
|
time++
|
|
if (node.level >= 1) {
|
|
setTimeout(() => {
|
|
if (time > 3) {
|
|
return resolve([
|
|
{ name: 'zone1', leaf: true },
|
|
{ name: 'zone2', leaf: true },
|
|
{ name: 'zone3', leaf: true },
|
|
])
|
|
} else {
|
|
return reject()
|
|
}
|
|
}, 3000)
|
|
}
|
|
}
|
|
</script>
|