This commit is contained in:
孟帅
2025-07-13 18:57:52 +08:00
parent 20a9e38fa8
commit 42d5500941
23 changed files with 91 additions and 27 deletions

View File

@@ -1,7 +1,8 @@
<template>
<span :style="{ color }">
<span :style="{ color }" v-if="endVal > 0">
{{ value }}
</span>
<span :style="{ color }" v-else> 0 </span>
</template>
<script lang="ts">
import { defineComponent, ref, computed, watchEffect, unref, onMounted, watch } from 'vue';