使用vite官方提供的 Glob 导入
浏览器出现: index.js:1 Uncaught TypeError: (intermediate value).globEager is not a function
使用import.meta.glob也是同样报错
import.meta.glob("./src/util/directives/*.js")
// 使用版本
"vite": "^1.0.0-rc.13",
"vue": "^3.0.4",
使用vite官方提供的 Glob 导入
浏览器出现: index.js:1 Uncaught TypeError: (intermediate value).globEager is not a function
使用import.meta.glob也是同样报错
import.meta.glob("./src/util/directives/*.js")
// 使用版本
"vite": "^1.0.0-rc.13",
"vue": "^3.0.4",
我解决了,出现问题是因为我vite的版本^1.0.0-rc.13",我重新创建了个项目vite的版本是2.3.7,不存在我上面的问题,至于为什么出现版本问我也不太清楚,项目就是前几天按照官网的步骤执行的