Home > front end >  Image is not shown in the popup
Image is not shown in the popup

Time:01-27

Using the starter template enter image description here enter image description here

Edit: Event if I use <img src="pass.png" /> its not resolved

CodePudding user response:

Change it to

<img src="pass.png">

CodePudding user response:

Try out to import it then bind it to the img src :

<template>
  <div >
    <Logo />
    <div>WebExt <span >v. 1.0</span></div>
    <p >
      Some description here...
      <img :src="imgUrl" />
    </p>
  </div>
</template>
<script setup >
import imgUrl from './pass.png'

</script
  •  Tags:  
  • Related