You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
756 B

1 month ago
<template>
<section style="padding: 4px 12px" class="flex">
<Icon icon="svg-icon:weather-fine" :size="40"/>
<section class="flex gap-4px flex-items-center">
<Icon icon="svg-icon:bracket" :size="20"/>
<span style="text-decoration: underline">{{new Date().getFullYear()}}</span>
<section class="h-3px w-10px bg-#16B1FF b-r-2px"></section>
<span style="text-decoration: underline">{{new Date().getMonth()+1}}</span>
<section class="h-3px w-10px bg-#16B1FF b-r-2px"></section>
<span style="text-decoration: underline">{{new Date().getDate()}}</span>
<Icon class="rotate-180" icon="svg-icon:bracket" :size="20"/>
</section>
</section>
</template>
<script setup lang="ts">
</script>
<style scoped lang="scss"></style>