element-plus/packages/drawer/index.ts

9 lines
165 B
TypeScript
Raw Normal View History

import { App } from 'vue'
import Drawer from './src/index.vue'
2020-10-29 17:28:26 +08:00
Drawer.install = (app: App): void => {
app.component(Drawer.name, Drawer)
}
2020-10-29 17:28:26 +08:00
export default Drawer