mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 06:28:42 +01:00
11 lines
199 B
Vue
11 lines
199 B
Vue
<template>
|
|
<tag size="small">
|
|
<date-time :date="date" class="whitespace-nowrap text-blue"></date-time>
|
|
</tag>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
defineProps<{
|
|
date: Date;
|
|
}>();
|
|
</script>
|