zhengyiming
8 天以前 92921431668181fb6d3387368c751ccc40aba8cf
src/views/DataBoard/components/DataBoardDataInfoItem.vue
@@ -7,7 +7,7 @@
  >
    <div class="data-board-data-info-item-label">{{ label }}</div>
    <div class="data-board-data-info-item-value">
      <el-statistic :value="value" />
      <el-statistic :value="_value" />
    </div>
  </div>
</template>
@@ -28,9 +28,9 @@
const value = defineModel<number>('value');
// const _value = useTransition(value, {
//   duration: 500,
// });
const _value = useTransition(value, {
  duration: 500,
});
</script>
<style lang="scss" scoped>