在Vue3 + TS 的demo项目中 , 使用app.config.globalProperties.$session = sessionStorage封装了一个全局的$session , 但是出现了Property '$session' does not exist on type的报错提示 , 查找了下发现是需要写一个声明文件
在src文件夹下新建一个xxx.d.ts文件文章来源:https://www.toymoban.com/news/detail-696313.html
import {ComponentCustomProperties } from '@/vue'
declare module '@vue/runtime-core'{
interface ComponentCustomProperties {
$session: any,
}
}
声明后可正常使用了文章来源地址https://www.toymoban.com/news/detail-696313.html
到了这里,关于记录Property ‘xxx‘ does not exist on type问题解决方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!