mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* 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>
12 lines
333 B
TypeScript
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'
|