为什么数据中的图片没有显示在 v-card 中? (验证)

Why the picture in data doesn't show in v-card? (Vuetify)

图片不显示在名片中,但其他数据仍然可以显示在标签中。图片数据为imagelinks。例如{名称:'Kitty Doll',积分:1000,数量:4,图片:“http://f.lnwfile.com/7mgmwg.png”}

这里上传不了图片,所以放这里linkhttps://imgur.com/cyNLysF

            <v-card class="mb-2" tile='' height="200" width="200">
              <v-row align="start">
                    <v-col class="shrink">
                         <v-img src= item.picture></v-img>
                    </v-col>
                 </v-row>
            </v-card>
          
        
          <br>
          <label for="name">Name: <td>{{ item.name }}</td> </label>
           <br>
          <label for="points">Points: <td>{{ item.points }}</td></label>
           <br>
           <label for="amount">Amount: <td>{{ item.amount }}</td> </label>
         


  [1]: https://i.stack.imgur.com/xoh8p.png

绑定如下:

<v-img :src="item.picture"></v-img>