[Vuejs]-Vue.js router-link $route.params display image

0๐Ÿ‘

โœ…

if the image is hosted online you could just add : to the src attribute :

:src="$route.params.company_logo"

if the images is in the add require :

:src="require($route.params.company_logo)"

Leave a comment