Blame view

Yi.Vben5.Vue3/playground/src/api/core/user.ts 219 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
10
  import type { UserInfo } from '@vben/types';
  
  import { requestClient } from '#/api/request';
  
  /**
   * 获取用户信息
   */
  export async function getUserInfoApi() {
    return requestClient.get<UserInfo>('/user/info');
  }