10 lines
257 B
TypeScript
10 lines
257 B
TypeScript
|
|
export default defineEventHandler(async (event) => {
|
|
const res = await $fetch(`http://10.10.150.131:8080/api/menu/getlist`, {
|
|
method: "GET",
|
|
headers: {"Content-Type": "application/json"}
|
|
})
|
|
// console.log(res)
|
|
return res
|
|
})
|