Files
AstralRinth/theseus_gui/src/helpers/fetch.js
2023-05-22 18:11:31 -07:00

11 lines
243 B
JavaScript

import { ofetch } from 'ofetch'
import { handleError } from '@/store/state.js'
export const useFetch = async (url, item) => {
try {
return await ofetch(url)
} catch (err) {
handleError({ message: `Error fetching ${item}` })
}
}