2022-12-31 11:36:49 +00:00
|
|
|
<template>
|
2022-12-31 12:10:25 +00:00
|
|
|
<span>{{ number(Math.floor(tweened.number)) }}</span>
|
2022-12-31 11:36:49 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref, reactive, watch } from 'vue';
|
|
|
|
import gsap from 'gsap';
|
|
|
|
import number from '@/filters/number';
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
value: number;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const tweened = reactive({
|
|
|
|
number: 0,
|
|
|
|
});
|
|
|
|
|
|
|
|
watch(() => props.value, (n) => {
|
2022-12-31 12:10:25 +00:00
|
|
|
gsap.to(tweened, { duration: 1, number: Number(n) || 0 });
|
2022-12-31 11:36:49 +00:00
|
|
|
}, {
|
|
|
|
immediate: true,
|
|
|
|
});
|
|
|
|
</script>
|