Files
one-pipe-system/src/composables/useSystemInfo.ts
sexygoat 222e5bb11a Initial commit: One Pipe System
完整的管理系统,包含账户管理、卡片管理、套餐管理、财务管理等功能模块。

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-22 16:35:33 +08:00

10 lines
160 B
TypeScript

import AppConfig from '@/config'
export function useSystemInfo() {
const getSystemName = () => AppConfig.systemInfo.name
return {
getSystemName
}
}