10 lines
261 B
TypeScript
10 lines
261 B
TypeScript
import { xfetch } from '~/composables/useXfetch'
|
|
|
|
export async function getSourceUoms() {
|
|
const resp = await xfetch('/api/v1/uom')
|
|
if (resp.success) {
|
|
return (resp.body as Record<string, any>).data
|
|
}
|
|
throw new Error('Failed to fetch source uoms')
|
|
}
|