img tag not working with relative path in src

后端 未结 5 1208
星月不相逢
星月不相逢 2020-12-17 16:00

This is not working:

\"Alternative

But this is working:



        
5条回答
  •  一生所求
    2020-12-17 16:59

    In React:

    1. import the image:

      import image from '../../assets/random-image.png'
      
    2. use the imported variable as a value of a src attribute:

      
      

提交回复
热议问题