Files
element-plus/packages/components/tree-select/index.ts
sea adf4fbfb6b feat(components): [tree-select] add instance type and improve test cleanup logic (#22499)
* feat(components): [tree-select] add instance

* chore: update

* chore: update test

Co-authored-by: btea <2356281422@qq.com>

* Update packages/components/tree-select/src/instance.ts

Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com>

---------

Co-authored-by: btea <2356281422@qq.com>
Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com>
2025-11-28 23:34:57 +08:00

12 lines
333 B
TypeScript

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