Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
334 views
in Technique[技术] by (71.8m points)

vuecli中引用static的问题

各位大侠,我在网上学习的,有些图片要放在static目录下,所以我引用图片的代码是<img src='/static/tu.jpg'
,在代码打包后static文件夹和index.html在一个目录下,是可以正常引用的。
但我目前是在开发环境下,例如我的一个组件需要引用图片,他在src/components文件夹下,那我引用的代码用<img src='/static/tu.jpg'就不能正常显示了,我也看不到图片的效果了,我还要改成<img src='。。/。。/static/tu.jpg'格式。这样我的图片很多,好麻烦啊,请问大家平常是怎么搞的?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

vue-cli,静态资源文件目录是public吧.

所以这种方式生效<img src='/static/tu.jpg'
对应的目录应该是
|public
| |--static
|src


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...