找不到模块“*.vue”或其相应的类型声明。ts(2307)
找不到模块“./tree/index.vue”或其相应的类型声明。ts(2307)
·
使用taro-ui-vue3开发小程序时,调用.vue文件包一下错误
找不到模块“*.vue”或其相应的类型声明。ts(2307)
解决方法:
在global.d.ts文件中添加以下代码:
declare module "*.vue" {
import { defineComponent } from "vue";
const Component: ReturnType<typeof defineComponent>;
export default Component;
}
有时候重启项目才会生效
更多推荐
已为社区贡献1条内容
所有评论(0)