I have used the following code to load image in my App which is based on Vue.js and Onsen UI . But they are not showing.
<div class="footer_logo">
<ul>
<li class=""><img :src="logo" alt="logo" /></li>
</ul>
</div>
I have imported the image using the following code in script
import foot1 from 'static/assets/img/footerlogos/1.svg';
export default {
data() {
logo: foot1;
}
Edit
Project structure