vite vue3 src import 动态导入失败解决方法
1.使用import.meta.globEager()const getSrc = (name) => { const path = `/static/icon/${name}.svg`; const modules = import.meta.globEager("/static/icon/*.svg"); return modules[path].default; };2.在computed属性中使用动态路径 var imagePath = .
原创
2021-10-18 11:51:29 ·
6574 阅读 ·
0 评论