date.vue 471 B

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