fix: eslint errors

This commit is contained in:
hw
2025-10-30 16:33:33 +08:00
parent 8e174a8308
commit 20f838adde
51 changed files with 4433 additions and 21 deletions

View File

@@ -1 +1,12 @@
import type { App } from 'vue';
import { createPinia } from 'pinia';
export * from './auth';
const store = createPinia();
export const setupStore = (app: App<Element>) => {
app.use(store);
};
export { store };