zhengyiming
3 天以前 27f846dc2415f9a962c09e45b5447ad0f9106e2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
  <div class="tag-group-wrapper">
    <slot />
  </div>
</template>
 
<script setup lang="ts">
defineOptions({
  name: 'TagGroup',
});
</script>
 
<style lang="scss" scoped>
@use '@/style/common.scss' as *;
 
.tag-group-wrapper {
  display: flex;
  overflow-y: auto;
  margin: -10px;
  max-height: 400px;
  flex-wrap: wrap;
}
</style>