This commit is contained in:
Viet An
2026-06-09 11:43:27 +07:00
parent 5325168248
commit bb05320d65
19 changed files with 418 additions and 1008 deletions

View File

@@ -0,0 +1,10 @@
<script setup>
const { $dayjs } = useNuxtApp();
const props = defineProps({
date: String,
});
</script>
<template>
<span>{{ $dayjs(date).format("L") }}</span>
</template>