react中引用图片

引用本地图片

第一种导入图片路径

import Img from "./images/1.png"

第二种直接获取图片


如果是背景图的话操作style

style={{background:`url(${require("./images/1.png")})` }}

${} 为字符串模板,要用反引号``

你可能感兴趣的:(react中引用图片)