board.vue 585 B

1234567891011121314151617181920212223
  1. <!--
  2. * @Author: NMTuan
  3. * @Email: NMTuan@qq.com
  4. * @Date: 2024-02-18 11:48:34
  5. * @LastEditTime: 2024-02-19 22:17:35
  6. * @LastEditors: NMTuan
  7. * @Description:
  8. * @FilePath: /timeNow/components/clock/board.vue
  9. -->
  10. <template>
  11. <div
  12. class="text-zinc-200 text-[22vw] leading-[24vw] text-center font-digital-dismay"
  13. >
  14. <span>{{ dateStore.hour }}</span>
  15. <span>:</span>
  16. <span>{{ dateStore.minute }}</span>
  17. <span>:</span>
  18. <span>{{ dateStore.second }}</span>
  19. </div>
  20. </template>
  21. <script setup>
  22. const dateStore = useDateStore()
  23. </script>