export const anchorTable = [ { name: 'id', label: 'Identificador', initialValue: '', hidden: false, type: 'texto' }, { name: 'esPrincipal', label: 'Tipo de Almacen', initialValue: true, width: 'auto', hidden: false, type: 'etiq_alma' }, { name: 'region', label: 'Region', initialValue: 'Costa', width: 'auto', hidden: false, type: 'texto' }, { name: 'provincia', label: 'Provincia', initialValue: 'Lima', width: 'auto', hidden: false, type: 'texto' }, { name: 'latitud', label: 'Latitud', initialValue: 0, width: 'auto', hidden: false, type: 'texto' }, { name: 'longitud', label: 'Longitud', initialValue: 0, width: 'auto', hidden: false, type: 'texto' }, { name: 'action', label: 'Acciones', initialValue: '', hidden: false }, ]; export const dataApi = [ { id: '1', esPrincipal: false, region: 'Costa', provincia: 'Arequipa', latitud: 24, longitud: 50, estado: 0, correo: 'mail@boss.com', dni: '123456' }, { id: '2', esPrincipal: true, region: 'Costa', provincia: 'Lima', latitud: 24, longitud: 50, nombre: 'Juan', estado: 1, correo: 'mail@boss.com', dni: '123456' } ];