赞
踩
Uncaught (in promise) ReferenceError: require is not defined
1、因为require是webpack提供的一种加载能力,但是vue3项目时搭配vite的,所以这里应该用vite提供的静态资源载入方法,
官方文档:https://vitejs.cn/guide/assets.html#the-public-directory
将上面的require改为new URL这种格式,页面就可以正常加载静态资源了
<img :src="image" />
const image = new URL('@/static/images/error.svg', import.meta.url).href
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。