- import { request } from '@/utils/http'
- import type { ResultData } from '@/utils/http'
- export type MenuItem = {
- id: number
- title: string
- cover: string
- children: MenuItem[]
- grid: number
- }
- export const getMenuList = (): Promise<ResultData<MenuItem[]>> => request.get('web/menu')
|