fix: 修复类型推导错误

This commit is contained in:
kailong321200875 2023-12-15 14:01:09 +08:00
parent 30fb2de6f3
commit 649fb17d00
1 changed files with 1 additions and 1 deletions

View File

@ -13,6 +13,6 @@ export const setupElementPlus = (app: App<Element>) => {
})
components.forEach((component) => {
app.component(component.name, component)
app.component(component.name!, component)
})
}