mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-26 15:16:27 +01:00
11 lines
188 B
Vue
11 lines
188 B
Vue
<template>
|
|
<Tag size="small">
|
|
<DateTime :date="date" class="whitespace-nowrap text-blue" />
|
|
</Tag>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
defineProps<{
|
|
date: Date;
|
|
}>();
|
|
</script>
|