赞
踩
原因是我们没有写后缀名 建议你在你的vite.config.js中加上如下配置
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
// resolve: {
// // 忽略后缀名的配置选项, 添加 .vue 选项时要记得原本默认忽略的选项也要手动写入
// extensions: [".mjs", ".js", ".ts", ".jsx", ".tsx", ".json", ".vue"],
// },
});
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。