You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
287 B
10 lines
287 B
import { computed } from 'vue'
|
|
|
|
export const useDay = () => {
|
|
const days = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'] as const
|
|
|
|
const date = new Date()
|
|
const whichWeek = computed(() => days[date.getDay()])
|
|
|
|
return { whichWeek }
|
|
}
|
|
|