mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
|
import { App } from 'vue'
|
||
|
import Main from '../container/src/main.vue'
|
||
|
|
||
|
Main.install = (app: App): void => {
|
||
|
app.component(Main.name, Main)
|
||
|
}
|
||
|
|
||
|
export default Main
|
||
|
|