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

这篇具有很好参考价值的文章主要介绍了记录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://www.toymoban.com/news/detail-696313.html

到了这里,关于记录Property ‘xxx‘ does not exist on type问题解决方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 关于JS中的一个[Vue warn]: Property “xxx“ was accessed during render but is not defined on instance 小问题

    作为一个Java Script的初学者,以此记录做小练习时途中遇到的一点点小问题。 在网上找了很多关于无法找到“xxx”实例的消息,但是要么是太过于高级亦或者太过于不想关的例子,java与前端相关的js技术现在都是用VUE3来实现,以下只是单独抽出来一个js里的小练习里遇到的小

    2024年02月12日
    浏览(43)
  • web项目启动报错:Document base XXX does not exist or is not a readable directory

    原因分析:旧web项目启动操作时留下的缓存导致的。 1. 删除tomcat根目录下的work或work目录下的Catalina文件夹 我的问题是这样解决的,有的问题还需进行第二步删除 2. 删除tomcat—》conf—》server.xml中无用的Context标签,改文件也可在eclipse中查找,如图。

    2024年02月15日
    浏览(63)
  • launch: program ‘c: \build\Debug\outDebug’does not exist问题成功解决

    闲来无事,编写一个C语言程序,代码如下: 想通过VScode调试一番,发现出现了以下的提示 在网上找了许多方法,都没有成功,最后打算自己慢慢研究研究。。。 我按照提示打开了launch.json文件  通过观察,发现问题出现在“program”,我输入一定的字符,发现有自动提示功能

    2024年02月15日
    浏览(50)
  • 解决 An attempt was made to call a method that does not exist. 问题详解

    哈喽大家好,我是阿Q。今天在开发代码的过程中,由于手抖,不知道引入了什么包依赖,导致项目启动一直报错,特写本文来记录下解决问题的经过。 有想赚点外块|技术交流的朋友,欢迎来撩 报错信息如下 报错描述 试图从以下位置去调用一个不存在的方法: io.undertow.we

    2024年02月09日
    浏览(67)
  • ORA-20000: Unable to set values for index xxx: does not exist or insufficient privileges

    使用expdp/impdp导出导入数据时,遇到ORA-2000错误,如下所示: 导出环境为Oracle 12c,导入的数据库环境为Oracle 19c,具体版本为19.16.0.0.0,查了一下Oracle Support,刚好是遇到了Bug 30978304,关于为什么会出现这个错误, ORA-20000 from Data Pump Import (IMPDP) when PK Constraint does not Create a New In

    2024年02月12日
    浏览(67)
  • warning: React does not recognize the xxx prop on a DOM element

    warning: React does not recognize the xxx prop on a DOM element Warning: React does not recognize the disableValue prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase disablevalue instead. If you accidentally passed it from a parent component, remove it from the DOM element 这是React不能识别

    2024年02月04日
    浏览(44)
  • [Flink] Flink Job运行状态正常,但日志中偶报“FlinkException: The file LOG does not exist on the TaskExecutor.”

    Flink : 1.12 该报错主要是找不到 STDOUT 文件,原因是程序中没有 sout 输出,当你去 web-ui 点击 stdout 目录,就会报一个这儿样的接口请求错误,并不影响程序运行,可忽略。 方式1:不影响程序正常运行,忽略此ERROR即可 目前博主的做法 (经验证,确实不影响程序功能正常运行)

    2024年02月03日
    浏览(75)
  • 解决launch:program .exe does not exist

    二. 程序的运行和调试 1.launch.json 复制下列代码至launch.json,并根据指导做出相对/绝对路径修改 tasks.json 收纳生成的 exe 可执行文件 打开.vscode 文件夹下的 launch.json 文件,找到 “${fileDirname}${fileBasenameNoExtension}.exe” 修改成 “${fileDirname}coin${fileBasenameNoExtension}.exe” 并保存,同

    2024年02月03日
    浏览(44)
  • Vue3报错:Property “xxx“ was accessed during render but is not defined on instance.

    Vue3报错:Property “xxx” was accessed during render but is not defined on instance. 翻译:属性“xxx”在呈现期间被访问,但没有在实例上定义。 其实就是在模板上有,但是在script上没有定义 很多同学跟说这不是报错,是警告,其实只要是在渲染页面时出现的问题,我们都可以说成是报错

    2023年04月08日
    浏览(52)
  • Property xxx was accessed during render but is not defined on instance. 和 ResizeObserver loop limit

    问题出现,在Vue3中引入了elementui相关报错 关于今天在Vue3中遇到的Property \\\"size\\\" was accessed during render but is not defined on instance. 然后还报错了ResizeObserver loop limit /(ㄒoㄒ)/~~ 出现的报错意思是 \\\" 属性\\\'xxx(size)\\\'在渲染期间被访问,但未在实例上定义 \\\" 引入elementui中Vue3template里的相关代

    2024年02月13日
    浏览(36)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包