mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* fix: correct bundle export * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update
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
|
|
|