mirror of
https://github.com/jekip/naive-ui-admin.git
synced 2026-02-07 23:12:27 +08:00
10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
import http from '@/utils/http/axios';
|
|
|
|
//获取主控台信息
|
|
export function getConsoleInfo() {
|
|
return http.request({
|
|
url: '/dashboard/console',
|
|
method: 'get',
|
|
});
|
|
}
|