mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-09-08 20:27:19 +08:00
9 lines
140 B
JavaScript
9 lines
140 B
JavaScript
import request from '@/utils/request'
|
|
|
|
export function fetchAsyncRoutes() {
|
|
return request({
|
|
url: '/routes',
|
|
method: 'get'
|
|
})
|
|
}
|