Update SpecialTimeStore.ts
This commit is contained in:
parent
5c28d14047
commit
4a774f497e
1 changed files with 6 additions and 2 deletions
|
|
@ -41,8 +41,12 @@ export const useSpecialTimeStore = defineStore("LeaveSpecialTime", () => {
|
|||
|
||||
// paging
|
||||
const toDay = ref<Date>(new Date());
|
||||
const month = ref<number>(11);
|
||||
const year = ref<number>(2023);
|
||||
const monthToday = toDay.value.getMonth();
|
||||
const yearToday = toDay.value.getFullYear();
|
||||
console.log(monthToday + 1);
|
||||
|
||||
const month = ref<number>(monthToday + 1);
|
||||
const year = ref<number>(yearToday);
|
||||
const page = ref<number>(1);
|
||||
const total = ref<number>(0);
|
||||
const pageSize = ref<number>(10);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue