src/assets/profile.jpg
<v-img src="../assets/profile.png" aspect-ratio="2.75"></v-img>
not load
I do not work. What is the reason?
By the way,
If you specify img tag src, the image will be output.
First you have to bind your image path to the src property and then you have to wrap the path in require('@/assets/profile.jpg') to let webpack know that this is a dependency.
So as mentioned as a comment, change your code to this: <v-img :src="require('@/assets/profile.jpg')" aspect-ratio="2.75" ></v-img>
<v-img :src="require('@/assets/profile.jpg')" aspect-ratio="2.75" ></v-img>instead