mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
|
import { App } from 'vue'
|
||
|
import MenuItem from '../menu/src/menuItem.vue'
|
||
|
|
||
|
MenuItem.install = (app: App): void => {
|
||
|
app.component(MenuItem.name, MenuItem)
|
||
|
}
|
||
|
|
||
|
export default MenuItem
|
||
|
|