11 lines
176 B
Vue
11 lines
176 B
Vue
<script setup>
|
|
const { $dayjs } = useNuxtApp();
|
|
const props = defineProps({
|
|
date: String,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<span>{{ $dayjs(date).format("L") }}</span>
|
|
</template>
|