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