10 秒解决,直接复制粘贴
报错提示:无法找到模块“xxx.vue”的声明文件。“xxx.vue”隐式拥有 "any" 类型。ts-plugin(7016)
解决方法
在src文件夹中找到vite-env.d
文件,把下面的粘贴进去。
declare module '*.vue' { import { ComponentOptions } from 'vue' const componentOptions: ComponentOptions export default componentOptions }
image.png
我是阿星,祝你下午快乐~