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