vue3 + typescript 全局属性设置类型报错
typescript 开发vue3时候找不到globalProperties上添加属性的问题,报错找不到属性xxxx
·
报错
类型“{ $: ComponentInternalInstance; $data: {}; $props: Partial<{}> & Omit<Readonly<{} & {} & {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>; ... 10 more ...; $watch(source: string | Function, cb: Function, options?: WatchOptions<...> | undefined): WatchStopHandle; } & ... 4 more ... & ComponentC...”上不存在属性“xxxxx”。
找到文件shims-vue.d.ts 或者新建一个`.ts`或".d.ts"文件
添加以下代码:
export {}
declare module 'vue' {
interface ComponentCustomProperties {
$filters: any
}
}
注意:一定要添加export {} 不然会覆盖掉原来的
参考vue3官方文档:TypeScript 与选项式 API | Vue.js
更多推荐
已为社区贡献1条内容
所有评论(0)