[Vuejs]-How to target/link resources (images and sounds) in vue

0👍

you are assigning a static string value … you should be using require instead :

this.img_url =  require('@/assets/404_images/404_coloud.png')

Leave a comment