wtt
2026-03-30 c89544954db0254978c1fabcb175d622db28551c
uni_modules/uni-tag/components/uni-tag/uni-tag.vue
@@ -1,5 +1,5 @@
<template>
   <text class="uni-tag" v-if="text" :class="classes" :style="customStyle" @click="onClick">{{text}}</text>
   <text class="uni-tag" v-if="showTag" :class="classes" :style="customStyle" @click="onClick">{{text}}</text>
</template>
<script>
@@ -69,6 +69,9 @@
         }
      },
      computed: {
         showTag() {
            return !!this.text.toString()
         },
         classes() {
            const {
               type,
@@ -249,4 +252,4 @@
         font-size: 12px;
      }
   }
</style>
</style>