Skip to content

Instantly share code, notes, and snippets.

@masweb
Last active February 18, 2023 22:26
Show Gist options
  • Save masweb/4e3731fed14bf48ebc8a2e7116db8ab4 to your computer and use it in GitHub Desktop.
Save masweb/4e3731fed14bf48ebc8a2e7116db8ab4 to your computer and use it in GitHub Desktop.
#fetch
import { useApi } from '@/composables/useApi'
import type { iBMResp } from '@/Interfaces/interfaces'
const resp:iBMResp = await useApi('/eventmultimedias', {
method: 'POST',
body: formData,
})
if (resp.status === 'Success') {
pics = resp.data
loaded()
} else console.log('$fetch error', resp.status, resp.message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment