报错

类型“{ $: 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

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐