lazy-src需要填写和src一样的属性。
例如:
<v-img
src="pic1.jpg"
lazy-src="pic1.jpg"
>
<template v-slot:placeholder>
<v-row class="fill-height ma-0" align="center" justify="center">
<v-progress-circular
indeterminate
color="grey lighten-5"
></v-progress-circular>
</v-row>
</template>
</v-img>
评论区