Skip to content

Instantly share code, notes, and snippets.

@HydrangeaPurple
Created April 11, 2024 13:11
Show Gist options
  • Save HydrangeaPurple/512ec53e03086dbb11c52b7c78387d50 to your computer and use it in GitHub Desktop.
Save HydrangeaPurple/512ec53e03086dbb11c52b7c78387d50 to your computer and use it in GitHub Desktop.
[vue在main.ts中校验全部的组件之间的import依赖] #vue
// 校验组件之间的依赖 在 main.ts 中
const components: Record<string, any> = import.meta.glob('./incomp/**/*.vue', { eager: false });
for (const path in components) {
await components[path]();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment