mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
6 lines
135 B
TypeScript
6 lines
135 B
TypeScript
|
import { App } from 'vue'
|
||
|
import Drawer from './src/index'
|
||
|
export default (app: App): void => {
|
||
|
app.component(Drawer.name, Drawer)
|
||
|
}
|