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