mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 12:48:04 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
15 lines
445 B
TypeScript
15 lines
445 B
TypeScript
import CascaderPanel from './src/index.vue'
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils'
|
|
|
|
CascaderPanel.install = (app: App): void => {
|
|
app.component(CascaderPanel.name, CascaderPanel)
|
|
}
|
|
|
|
const _CascaderPanel = CascaderPanel as SFCWithInstall<typeof CascaderPanel>
|
|
|
|
export default _CascaderPanel
|
|
export const ElCascaderPanel = _CascaderPanel
|
|
export * from './src/types'
|
|
export * from './src/config'
|