赞
踩
在vue3中使用require引入img时,发现控制台报错“require is not defined”。(如图所示)
因为vue3项目使用vite创建的,而require是webpack提供的一种加载能力。
使用new URL(url, import.meta.url).href的格式引入图片。
用法:
new URL(‘路径’,import.meta.url).href
bigImg:new URL('./assets/logo.png', import.meta.url).href,
直接使用import引用该图片路径。
备注
本文参考:夏兮颜
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。