9 lines
128 B
JavaScript
Raw Normal View History

2022-08-02 10:16:07 +08:00
import http from '@/util/http.js'
export function getMenu () {
return http({
url: '/api/menus',
method: 'get'
})
}