mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
b45f084a72
* fix(build): fix import module path * fix: fix export constants & type * fix(popover): fix exports and import
11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
import { App } from 'vue'
|
|
import CascaderPanel from './src/index.vue'
|
|
|
|
export default (app: App): void => {
|
|
app.component(CascaderPanel.name, CascaderPanel)
|
|
}
|
|
|
|
export { CascaderPanel }
|
|
export * from './src/types'
|
|
export * from './src/config'
|