async makeRes(){
const h = useRequestHeaders([''])
return await $fetch('https://localhost:port/myendpoint',{
headers:{
h
},
method: 'POST',
body:{
'message': <my-data>,
}
})
}