0


记录Property ‘xxx‘ does not exist on type问题解决方法

在Vue3 + TS 的demo项目中 , 使用app.config.globalProperties.$session = sessionStorage封装了一个全局的$session , 但是出现了Property '$session' does not exist on type的报错提示 , 查找了下发现是需要写一个声明文件

在src文件夹下新建一个xxx.d.ts文件

import {ComponentCustomProperties } from '@/vue'
declare module '@vue/runtime-core'{
  interface ComponentCustomProperties {
    $session: any,
  }
}

声明后可正常使用了


本文转载自: https://blog.csdn.net/liyp921210/article/details/129674199
版权归原作者 Wings_Lee 所有, 如有侵权,请联系我们删除。

“记录Property ‘xxx‘ does not exist on type问题解决方法”的评论:

还没有评论