+
-
{{ props.title }}
+
{{ appStore.title }}
diff --git a/src/store/index.ts b/src/store/index.ts
index 397cd23..3d337d1 100644
--- a/src/store/index.ts
+++ b/src/store/index.ts
@@ -5,3 +5,4 @@ export function setupStore(app: App) {
const store = createPinia();
app.use(store);
}
+export * from './modules';
diff --git a/src/store/modules/app.ts b/src/store/modules/app.ts
new file mode 100644
index 0000000..07a53a9
--- /dev/null
+++ b/src/store/modules/app.ts
@@ -0,0 +1,15 @@
+import { defineStore } from 'pinia';
+
+export const useApp = defineStore('app-store', {
+ state: () => {
+ return {
+ collapsed: false,
+ title: import.meta.env.VITE_APP_TITLE,
+ };
+ },
+ actions: {
+ switchCollapse() {
+ this.collapsed = !this.collapsed;
+ },
+ },
+});
diff --git a/src/store/modules/auth.ts b/src/store/modules/auth.ts
new file mode 100644
index 0000000..6be36e0
--- /dev/null
+++ b/src/store/modules/auth.ts
@@ -0,0 +1,9 @@
+import { defineStore } from 'pinia';
+
+export const useAuth = defineStore('auth-store', {
+ state: () => {
+ return {
+ name: '张三',
+ };
+ },
+});
diff --git a/src/store/modules/index.ts b/src/store/modules/index.ts
index e5abc85..17b64ca 100644
--- a/src/store/modules/index.ts
+++ b/src/store/modules/index.ts
@@ -1 +1,2 @@
export * from './user';
+export * from './app';
diff --git a/src/views/test/test2.vue b/src/views/test/test2.vue
index a0a4f15..4603ad1 100644
--- a/src/views/test/test2.vue
+++ b/src/views/test/test2.vue
@@ -1,11 +1,11 @@
- I prove that you have made the jump test2.
+ I prove that you have made the ju mp test2.
{{ userStore.name }}