0
I have the following code, I need the const 'exist' to receive information from an api object, I am trying to use Axios but without success.
const existe = informação da api;
export default [
{
path: 'clientes/',
name: 'cadastrar',
component: () => {
if (!existe) {
return import(/* webpackChunkName: "Inicio" */ '@/view/clientes/Cadastrar.vue');
} else {
return import(/* webpackChunkName: "Inicio" */ '@/view/clientes/ClienteInfo.vue');
}
},
},
];