wupengfei
2025-03-13 186234cb3833e620aa0ae46212fe337eb2d6e77d
packages/components/src/Card/TaskPrice.vue
@@ -1,7 +1,7 @@
<template>
  <div class="task-price">
    <div class="task-price-decimal">{{ value }}</div>
    <div class="task-price-unit">元/小时</div>
    <div class="task-price-unit">{{ unit }}</div>
  </div>
</template>
@@ -12,6 +12,7 @@
type Props = {
  value?: number;
  unit?: string;
};
const props = withDefaults(defineProps<Props>(), {});