vue + typescript:Property 'xxx' does not exist on type 'Vue'.

发布于 2022-09-11 14:22:42 字数 1157 浏览 14 评论 0

问题:vue + typescript实践。vscode 提示vue对象下没有定义的属性和方法(其实是已经定义过了)

相关代码和提示信息:

export default Vue.extend({
  props: {
    menu: {
      type: Array,
      default: () => []
    }
  },
  name: 'navHeaderMenu',
  data() {
    return {
      hoverIndex: ''
    }
  },
  methods: {
    triggerToMousemove(i: number): void {
      // 如果是下面这种语法:
      // vscode 会提示:Property 'hoverIndex' does not exist on type 'Vue'.
      this.houverIndex = i
      // vscode 的提示:Property 'test' does not exist no type 'Vue'.
      this.ab()
      // 如果是下面这种语法:
      // vscode 并不会报错
      (this as any).houverIndex = i
      (this as any).test()
      this.$emit('mouseover', i)
    },
    triggerToMouseout(i: number): void {
      (this as any).hoverIndex = ''
      this.$emit('mouseout', i)
    },
    test() {
        console.log('test')
    },
  },
})

疑问

  • vscode 为什么会提示: Property xxx does not exist on type 'Vue'
  • 百度了之后,用 typescript 的这个语法(this as any).xxx 就不会提示报错信息。不明白 (this as any).xxx 的语法表达的含义,大佬们可以指点下吗,谢谢.
  • 除了(this as any).xxx 语法,还有没有其他方式可以解决类似问题的报错

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朮生 2022-09-18 14:22:42

使用Vue.extend或者vue-class-component
参照官网https://cn.vuejs.org/v2/guide...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文