feat: 添加pinia、vue-router、tailwindcss
This commit is contained in:
11
src/pinia/modules/account.ts
Normal file
11
src/pinia/modules/account.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { defineStore } from "pinia";
|
||||
|
||||
export const useAccountStore = defineStore(
|
||||
"account",
|
||||
() => {
|
||||
// TODO: 账号信息
|
||||
},
|
||||
{
|
||||
persist: true
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user