Vue的组件install问题
来源:9-1 上传组件需求分析
有没有没被占用的昵称
2021-03-26
老师,这里报了个install is declared here是啥意思呀?
如果我直接定义成any就没事儿
写回答
1回答
-
同学你好 看 element-plus 的源代码了吧? 哈哈
这里它修改了 shims-vue.d.ts 让 component 有install 属性的,默认我们的是没有的,你要按他的修改一下就可以了
https://github.com/element-plus/element-plus/blob/dev/typings/vue-shim.d.ts
代码
declare module '*.vue' { import { App, defineComponent } from 'vue' const component: ReturnType<typeof defineComponent> & { install(app: App): void } export default component }
232021-03-27
相似问题