This repository has been archived on 2025-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
puyoskey-firefish/packages/client/src/components/MkNumber.vue
naskya d096da02e6 🎉 First Commit
release: v20240729

Co-authored-by: Laura Hausmann <laura@hausmann.dev>
Co-authored-by: GitLab CI <project_7_bot_1bfaee5701aed20091a86249a967a6c1@noreply.firefish.dev>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Saamkhaih Kyakya <70475761+hiohlan@users.noreply.github.com>

See merge request firefish/firefish!11214
2024-08-01 00:03:39 +09:00

27 lines
446 B
Vue

<template>
<span>{{ number(Math.floor(tweened.number)) }}</span>
</template>
<script lang="ts" setup>
import { 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) => {
gsap.to(tweened, { duration: 0.6, number: Number(n) || 0 });
},
{
immediate: true,
},
);
</script>