[Vuejs]-Can't load static files inside Vue.js component

0👍

You can put those images into /static folder and use them as src="/static/[filename]" (use absolute path).

Static folder is not processed by webpack.

Leave a comment