tag.vue 362 B

123456789
  1. <script lang="ts" setup></script>
  2. <template>
  3. <view
  4. class="inline-flex py-1.5 px-2.5 justify-center items-center gap-1.25 rounded-full border-[rgba(0,0,0,0.16)] border-0.75 border-solid text-[rgba(0,0,0,0.65)] text-3 font-400 line-height-4"
  5. >
  6. <wd-img width="15" height="15" src="/static/svgs/tag.svg"></wd-img>
  7. <slot></slot>
  8. </view>
  9. </template>