vue3动态引入图片
引用:https://blog.csdn.net/weixin_46769087/article/details/144206429
vue3,,,require引入图片失效了,,
直接在动态绑定的src
属性上面用 @/assets/xxx ,,不会解析到这个图片,,,
需要现在js中加载好对应的资源再引入:
const name = "c.jpg";
const imagePath = new URL(`../assets/${name}`, import.meta.url).href;
const iconImgList=ref([
{icon:new URL("@/assets/images/1.jpeg",import.meta.url).href},
{icon:new URL("@/assets/images/2.jpeg",import.meta.url).href},
{icon:new URL("@/assets/images/3.jpeg",import.meta.url).href},
])