2020-10-30 23:26:33 +08:00
|
|
|
import { App } from 'vue'
|
2020-12-23 14:07:15 +08:00
|
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
2020-10-30 23:26:33 +08:00
|
|
|
import CascaderPanel from './src/index.vue'
|
|
|
|
|
2020-11-20 20:24:16 +08:00
|
|
|
|
|
|
|
CascaderPanel.install = (app: App): void => {
|
2020-10-30 23:26:33 +08:00
|
|
|
app.component(CascaderPanel.name, CascaderPanel)
|
|
|
|
}
|
|
|
|
|
2021-08-24 13:36:48 +08:00
|
|
|
const _CascaderPanel = CascaderPanel as SFCWithInstall<typeof CascaderPanel>
|
2020-12-23 14:07:15 +08:00
|
|
|
|
|
|
|
export default _CascaderPanel
|
2021-08-24 13:36:48 +08:00
|
|
|
export const ElCascaderPanel = _CascaderPanel
|
2020-11-04 16:30:42 +08:00
|
|
|
export * from './src/types'
|
|
|
|
export * from './src/config'
|