feat: 新增集成tdesign组件的apps

This commit is contained in:
Jin Mao
2025-10-21 10:47:39 +08:00
parent 38f91da5af
commit 2264eaae18
64 changed files with 2957 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import type { UserInfo } from '@vben/types';
import { requestClient } from '#/api/request';
/**
* 获取用户信息
*/
export async function getUserInfoApi() {
return requestClient.get<UserInfo>('/user/info');
}