line.vue 475 B

123456789101112131415161718
  1. <template>
  2. <ComLine :parts="days" :highLight="Number(dateStore.date)"></ComLine>
  3. </template>
  4. <script setup>
  5. const dateStore = useDateStore()
  6. const days = computed(() => {
  7. // 获取当前日期
  8. const currentDate = new Date();
  9. // 获取当前月份
  10. const currentMonth = currentDate.getMonth();
  11. // 获取这个月的天数
  12. const daysInMonth = new Date(currentDate.getFullYear(), currentMonth + 1, 0).getDate();
  13. return daysInMonth
  14. })
  15. </script>