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 入口。