mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-18 01:36:37 +08:00
7 lines
137 B
TypeScript
7 lines
137 B
TypeScript
/** 项目名称 */
|
|
export default function useAppTitle() {
|
|
const title = import.meta.env.VITE_APP_TITLE as string;
|
|
|
|
return title;
|
|
}
|