22 lines
1.2 KiB
JavaScript
22 lines
1.2 KiB
JavaScript
import Login from './components/login.vue';
|
|
import Buscar from './components/buscar.vue';
|
|
import Modificar from './components/modificar.vue';
|
|
import Ver_datos from './components/ver_datos.vue';
|
|
import Registro_1 from './components/registro_1.vue';
|
|
import Registro_2 from './components/registro_2.vue';
|
|
import Registro_3 from './components/registro_3.vue';
|
|
import Registro_4 from './components/registro_4.vue';
|
|
import Registro_5 from './components/registro_5.vue';
|
|
import Menu from './components/menu.vue';
|
|
export const routes = [
|
|
{ path: '/menu', component: Menu, name: 'menu' },
|
|
{ path: '/', component: Login, name: 'login' },
|
|
{ path: '/registro_1', component: Registro_1, name: 'registro_1' },
|
|
{ path: '/registro_2', component: Registro_2, name: 'registro_2' },
|
|
{ path: '/registro_3', component: Registro_3, name: 'registro_3' },
|
|
{ path: '/registro_4', component: Registro_4, name: 'registro_4' },
|
|
{ path: '/registro_5', component: Registro_5, name: 'registro_5' },
|
|
{ path: '/buscar', component: Buscar, name: 'buscar' },
|
|
{ path: '/ver_datos', component: Ver_datos, name: 'ver_datos' },
|
|
{ path: '/modificar', component: Modificar, name: 'modificar' }
|
|
] |