Bootstrap

vue 导入组件 Failed to resolve import “@/components/Layout/SideBar“ from “src/views/Layout/LayoutIndex.v

原因:直接引入vue组件但没有在vite.config.ts文件配置扩展

解决方案:

方案1、在vite.config.ts文件中添加扩展,保存后重新运行即可

extensions: ['.js', '.jsx', '.ts', '.tsx', '.json', '.vue'],

  

;