vuetify-module icon indicating copy to clipboard operation
vuetify-module copied to clipboard

v-img not working!

Open success-0627 opened this issue 4 years ago • 3 comments

image image image

vuetify-loader: "1.5.0" vuetify: "2.3.1"

success-0627 avatar Jun 23 '20 05:06 success-0627

PS: Even I place static url such as https://i1.wp.com/www.scanphilosophy.com/wp-content/uploads/2015/07/img_44311.jpg v-img will never show any image.

success-0627 avatar Jun 23 '20 05:06 success-0627

I had the same problem in a custom nuxt-vuetify integration. Try to add the following to your nuxt.config.js:

build: {
	extend(config, { loaders }) {
		loaders.vue.transformAssetUrls['v-img'] = 'src'
	},
},

Please give feedback if this works for you.

P4sca1 avatar Jan 30 '21 15:01 P4sca1

I just ran into this. @P4sca1 's solution is working for me. I think it'd be nice to have this by default

mullahfaizal avatar Oct 21 '21 11:10 mullahfaizal