This commit is contained in:
2025-12-04 17:50:00 +08:00
parent a51a366f00
commit d217c8cec1
12 changed files with 632 additions and 514 deletions

View File

@@ -1,11 +1,11 @@
import { Query } from "@kevisual/query";
import { QueryClient } from "@kevisual/query";
import { QueryLoginBrowser } from '@kevisual/query-login';
export const query = new Query();
export const query = new QueryClient();
export const queryLogin = new QueryLoginBrowser({
query
})
export const local = new Query({
export const local = new QueryClient({
url: '/client/router'
});