vue react img标签引入图片的几种方式

2022-09-30 11:28:25

react

import imgURLfrom'./../images/photo.png';<img src={imgURL}/>
<img src={require('./../images/photo.png')}/>

vue

import imgURLfrom'./../images/photo.png';<img:src="imgURL"/>
<img:src="require('./../images/photo.png')"/>
  • 作者:带脑子的CV工程师
  • 原文链接:https://blog.csdn.net/qq_36262295/article/details/114261655
    更新时间:2022-09-30 11:28:25