Files
jiaxiang d676ca4897 chore: [tree] export types (#19846)
* chore: [tree] export type and fix the type error of the docs

* revert: revert

* revert: revert
2025-02-17 09:10:47 +08:00

12 lines
300 B
TypeScript

import { withInstall } from '@element-plus/utils'
import Tree from './src/tree.vue'
import type { SFCWithInstall } from '@element-plus/utils'
export const ElTree: SFCWithInstall<typeof Tree> = withInstall(Tree)
export default ElTree
export * from './src/tree.type'
export * from './src/instance'