🚩 增加Dns功能 优化性能

This commit is contained in:
7836246
2024-03-02 19:48:03 +08:00
parent 39f1774a2b
commit fcacfb9a04
15 changed files with 294 additions and 191 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineStore } from 'pinia'
export const useStyleStore = defineStore('style', {
state: () => {
return {
isPage: true,
}
},
actions: {
setIsPage(isPage: boolean) {
this.isPage = isPage
},
},
})