0👍
In Vue.js, you can import and use images inside a component by using the require function or by importing the image directly.
Try this:
<template>
<div>
<img :src="require('@/assets/icons/facebook-header.svg')" alt="Facebook Icon" />
</div>
</template>
Source:stackexchange.com