blob: 303417dae846e80998a4b361383b42f4fc94903d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<template>
<span class="ceaaebcd" :class="{ [$style.isPlus]: isPlus, [$style.isMinus]: isMinus, [$style.isZero]: isZero }">
<slot name="before"></slot>{{ isPlus ? '+' : '' }}{{ number(value) }}<slot name="after"></slot>
</span>
</template>
<script lang="ts" setup>
import { computed } from 'vue';
import number from '@/filters/number';
const props = defineProps<{
value: number;
}>();
const isPlus = computed(() => props.value > 0);
const isMinus = computed(() => props.value < 0);
const isZero = computed(() => props.value === 0);
</script>
<style lang="scss" module>
.isPlus {
color: var(--success);
}
.isMinus {
color: var(--error);
}
.isZero {
opacity: 0.5;
}
</style>
|