当前位置:   article > 正文

vue格网图

vue格网图

先看效果
在这里插入图片描述
再看代码

<n-grid
  v-else
  x-gap="20"
  :y-gap="20"
  cols="2 s:2 m:3 l:3 xl:3 2xl:4"
  responsive="screen"
>
  <n-grid-item
    v-for="(item,index) in newSongList"
    :key="item.id"
    class="cursor-pointer
rounded-md transition-colors 
hover:bg-zinc-300/40 dark:hover:bg-gray-700/30"
    @dblclick="handleDBClick(newSongList,onlyId,item,index)"
  >
    <div class="flex h-16 justify-between">
      <div class="relative">
        <load-img
          loading-height="64px"
          class-name="w-16 h-16 rounded-md"
          :src="item.picUrl"
          :show-message="false"
        />
        <play-icon
          :size="15"
          class="position-center cursor-pointer"
          style="opacity: 1;width: 25px;height: 25px;"
        />
      </div>
      <div class="ml-2 flex-1 truncate">
        <p class="mt-1 text-base">
          <n-ellipsis>{{ item.name }}</n-ellipsis>
        </p>
        <p class="mt-2 w-full text-sm opacity-60">
          <n-ellipsis>{{ formateSongsAuthor(item.song.artists) }}</n-ellipsis>
        </p>
      </div>
    </div>
  </n-grid-item>
</n-grid>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/742053
推荐阅读
相关标签
  

闽ICP备14008679号