React-引入图片的方法

方法一:

import imgURL from '../../images/logo.png';  

<img src={imgURL} alt="1"/>

方法二:

<img src={require('../../images/logo.png')} alt="2"/>

猜你喜欢

转载自www.cnblogs.com/superlizhao/p/9224469.html
今日推荐