to_inventory/front/helpers.ts

11 lines
249 B
TypeScript

const config = useRuntimeConfig()
export const apiBase = config.public.apiBase
export const makeColumns = (cols: string[]) => {
return cols.map(el => {
return {
key: el,
label: el.toUpperCase()
}
})
}