mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-30 11:16:12 +08:00
c5fc8b4e9a
* build: replace ts-loader with @babel/preset-typescript
9 lines
159 B
TypeScript
9 lines
159 B
TypeScript
import { App } from 'vue'
|
|
import Drawer from './src/index.vue'
|
|
|
|
export default (app: App): void => {
|
|
app.component(Drawer.name, Drawer)
|
|
}
|
|
|
|
export { Drawer }
|