Files
CensoFront/src/routes.js
T

11 lines
472 B
JavaScript
Raw Normal View History

2020-12-24 16:45:42 -06:00
import home from "./view/home.vue";
2021-01-26 00:51:56 -06:00
import addPrinter from "./view/addPrinter.vue";
import addPcs from "./view/addPcs"
import addCatalogo from "./view/addCatalogo"
2020-12-24 14:51:52 -06:00
export const routes = [
2021-01-26 00:51:56 -06:00
{ path: "/", component: home, name: "home" },
{ path: "/agregarImpresora", component: addPrinter, name: "addPrinter" },
{ path: "/agregarEquipo", component: addPcs, name: "addPcs" },
{ path: "/agregarCatalogo", component: addCatalogo, name: "addCataogo" }
]