Files
陈春 c9cf644ac5 chore: 添加构建推送脚本并更新项目配置
- 添加 build-and-push.sh 脚本用于自动化构建和推送 Docker 镜像
- 更新 .dockerignore 排除 pnpm-workspace.yaml
- 更新项目依赖和配置文件
2026-06-03 17:19:14 +08:00

16 lines
292 B
TypeScript
Executable File

import { defineStore } from 'pinia'
import { ref } from 'vue'
export const useAppStore = defineStore('app', () => {
const isAppLoading = ref(true)
const setAppLoading = (loading: boolean) => {
isAppLoading.value = loading
}
return {
isAppLoading,
setAppLoading,
}
})