feat(components): [tree] export TreeInstance (#15293)

This commit is contained in:
btea 2023-12-28 19:07:00 +08:00 committed by GitHub
parent d553ae3920
commit ef4fbe3be2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -11,3 +11,4 @@ const _Tree = Tree as SFCWithInstall<typeof Tree>
export default _Tree
export const ElTree = _Tree
export type { TreeInstance } from './src/instance'

View File

@ -0,0 +1,3 @@
import type Tree from './tree.vue'
export type TreeInstance = InstanceType<typeof Tree>