mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-27 14:52:56 +00:00
添加项目基础文件结构、依赖配置和核心功能模块 集成uni-app+Vue3+TypeScript开发环境 配置ESLint、Prettier、Stylelint等代码规范工具 实现主题管理、路由、状态管理等核心功能 添加登录认证、文件上传等常用API模块
14 lines
286 B
TypeScript
14 lines
286 B
TypeScript
import type { App } from "vue";
|
|
import { createPinia } from "pinia";
|
|
|
|
const store = createPinia();
|
|
|
|
// 全局注册 store
|
|
export function setupStore(app: App<Element>) {
|
|
app.use(store);
|
|
}
|
|
|
|
export * from "./modules/user.store";
|
|
export * from "./modules/theme.store";
|
|
export { store };
|