tyt-admin/src/router/index.ts

16 lines
366 B
TypeScript

import { createMemoryHistory, createRouter } from "vue-router";
import HomeView from "@/views/home/index.vue";
import AboutView from "@/views/login/index.vue";
const routes = [
{ path: "/", component: HomeView },
{ path: "/login", component: AboutView },
];
const router = createRouter({
history: createMemoryHistory(),
routes,
});
export default router;