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