mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 20:27:44 +08:00
14 lines
325 B
TypeScript
14 lines
325 B
TypeScript
import Drawer from './src/index.vue'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
Drawer.install = (app: App): void => {
|
|
app.component(Drawer.name, Drawer)
|
|
}
|
|
|
|
const _Drawer = Drawer as SFCWithInstall<typeof Drawer>
|
|
|
|
export default _Drawer
|
|
export const ElDrawer = _Drawer
|