Added Notifications

This commit is contained in:
2026-05-16 23:48:18 +10:00
parent 69d72e0912
commit 1d5b9f340f
61 changed files with 4204 additions and 182 deletions
@@ -0,0 +1,20 @@
<script setup lang="ts">
import { computed } from 'vue'
const props = defineProps<{
value: number
}>()
const formatted = computed(() =>
new Intl.NumberFormat(undefined, { maximumFractionDigits: 0 }).format(props.value)
)
</script>
<template>
{{ formatted }}
</template>
<style scoped>
</style>