How to resize the image in vue
问题 I upload image from nodejs to vue And put the image in v-card But the image is cut off how to resize the image by not cutting? 回答1: look this site. practice step by step https://www.npmjs.com/package/vue-image-upload-resize 回答2: Use 'contain' attribute in v-img <v-img src="/picture.png" alt="" contain <!-- causes picture not to be cropped --> height="100px" width="150px"> </v-img> check https://vuetifyjs.com/en/components/images#api for more information 回答3: I understand this question has