第一次提交

This commit is contained in:
7836246
2024-03-02 15:21:22 +08:00
parent 5ad838c5f3
commit 1ca7e58f24
24 changed files with 8336 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineStore } from 'pinia'
export const useTimeStore = defineStore('timeZones', {
state: () => {
return {
timeZones: 'UTC+8',
}
},
persist: {
storage: persistedState.cookiesWithOptions({
sameSite: 'strict',
}),
},
})