在使用vue-preview缩略图时src图太大了,怎么调小?

最近在学习vue的一个移动商城项目,但是视频已经是两年前的了,许多地方都搞不明白。在学习使用vue-preview缩略图时,我的src图片和msrc图片差不多大,我不明白这是为什么,还要如何才能让他达到理想的缩略图效果?
代码如下:

<template>
  <div class="photoinfo-container">
    <h3>{{ photoinfo.title }}</h3>
    <p class="subtitle">
      <span>发表时间:{{ photoinfo.add_time | dateFormat }}</span>
      <span>点击:{{ photoinfo.click }}次</span>
    </p>

    <hr>

    <!-- 缩略图区域 -->
    <div class="thumbs">
     <vue-preview :slides="slide1" @close="handleClose" tag="img" height="100px"></vue-preview>
    </div>
    <!-- 文字内容区域 -->
    <div class="content" v-html="photoinfo.content" ></div>

    <!-- 放置一个现成的 评论子组件 -->
    <cmt-box :id="id"></cmt-box>
  </div>
</template>

<script>
// 1. 导入评论子组件
import comment from "../subcomponents/comment.vue";

export default {
  data() {
    return {
      id: this.$route.params.id, // 从路由中获取到的 图片Id
      photoinfo: {}, // 图片详情
      slide1: [],

    };
  },
  created() {
    this.getPhotoInfo();
    this.getThumbs();

  },
  methods: {
    getPhotoInfo() {
      // 获取图片的详情
      this.$http.get("api/getimageInfo/" + this.id).then(result => {
        if (result.body.status === 0) {
          this.photoinfo = result.body.message[0];
        }
      });
    },
    getThumbs() {
      // 获取缩略图
      this.$http.get("api/getthumimages/" + this.id)
      .then(result => {
        if (result.body.status === 0) {
          // 循环每个图片数据,补全图片的宽和高
          result.body.message.forEach(item => {
            item.w = 600;
            item.h = 400;
            item.msrc = item.src;
          });
          // 把完整的数据保存到 slide1 中
          this.slide1 = result.body.message;
        }
      })
      .catch(error => {
        console.log(error);
        Toast({
        message: "获取缩略图图片失败..."
        });
        });
    },
    handleClose () {
        console.log('close event')
      }
  },
  components: {
    // 注册 评论子组件
    "cmt-box": comment
  }
};
</script>

<style lang="scss" scoped>
.photoinfo-container {
  padding: 3px;
  h3 {
    color: #26a2ff;
    font-size: 15px;
    text-align: center;
    margin: 15px 0;
  }
  .subtitle {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
  }

  .content {
    font-size: 13px;
    line-height: 30px;
  }

  .thumbs{
    img{
      margin: 10px;
      box-shadow: 0 0 8px #999;

    }
  }
}

</style>

我的效果图:
图片说明
图片说明

应达到的效果图:图片说明

对缩略图的高改变试试 不行就设置缩略图的css