date.vue 484 B

1234567891011121314151617181920
  1. <!--
  2. * @Author: NMTuan
  3. * @Email: NMTuan@qq.com
  4. * @Date: 2024-02-19 20:49:39
  5. * @LastEditTime: 2024-02-19 22:25:22
  6. * @LastEditors: NMTuan
  7. * @Description:
  8. * @FilePath: /timeNow/components/clock/date.vue
  9. -->
  10. <template>
  11. <div
  12. class="text-zinc-200 font-digital-dismay text-[1.4vw] text-right mr-[1vw]"
  13. >
  14. {{ dateStore.year }}. {{ dateStore.month }}.
  15. {{ dateStore.date }}
  16. </div>
  17. </template>
  18. <script setup>
  19. const dateStore = useDateStore()
  20. </script>