import { computed } from 'vue' export const useDay = () => { const days = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'] as const const date = new Date() const whichWeek = computed(() => days[date.getDay()]) return { whichWeek } }