#Improve 修复更新时可以点击联机按钮 新增easytier发布页 新增wg协议选项 优化描述,删除不必要的代码和文件

This commit is contained in:
leizi97
2024-10-13 21:15:23 +08:00
parent 676f8a9ae5
commit 82b6694bec
51 changed files with 16676 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { createPersistedState } from "pinia-plugin-persistedstate";
import { defineNuxtPlugin } from "nuxt/app";
export default defineNuxtPlugin((nuxtApp: any) => {
nuxtApp.$pinia.use(
createPersistedState({
storage: localStorage,
key: id => `__glj_persisted_${id}`
})
);
});