feat(menu): show post count for categories

This commit is contained in:
Tim
2025-07-31 17:48:28 +08:00
parent a02129b8f9
commit ef2aa43f03

View File

@@ -76,7 +76,10 @@
<img v-if="isImageIcon(c.smallIcon || c.icon)" :src="c.smallIcon || c.icon" class="section-item-icon" :alt="c.name" />
<i v-else :class="['section-item-icon', c.smallIcon || c.icon]"></i>
</template>
<span class="section-item-text">{{ c.name }}</span>
<span class="section-item-text">
{{ c.name }}
<span class="section-item-text-count" v-if="c.count >= 0">x {{ c.count }}</span>
</span>
</div>
</div>
</div>