首页 前端知识 Vue 错误 Property ‘xxx‘ does not exist on type ‘{}‘.

Vue 错误 Property ‘xxx‘ does not exist on type ‘{}‘.

2024-05-28 09:05:26 前端知识 前端哥 355 166 我要收藏

Vue 报错

使用Vue 写页面时,比如如下代码

<template>
    test {{ data }}
</template>

<script setp lang="ts">
const data = 'test data';
</script>

会报错误:

Property ‘data’ does not exist on type ‘{}’.

并且在引用这个vue 文件的时候会报如下错误:

test.vue.ts’ is not a module.ts(2306)

原因就是 setup 写错了 写成setp 了,导致找不到API 入口。

转载请注明出处或者链接地址:https://www.qianduange.cn//article/9835.html
标签
评论
发布的文章
大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!