mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
10 lines
162 B
TypeScript
10 lines
162 B
TypeScript
import { defineStore } from 'pinia';
|
|
|
|
export const useAuthStore = defineStore('auth-store', {
|
|
state: () => {
|
|
return {
|
|
name: '张三',
|
|
};
|
|
},
|
|
});
|