import { createWebHistory, createRouter } from "vue-router"; import Main from '../pages/main/Main.vue'; const routes = [ /* 메인화면 */ { path: '/', name: '/', component: Main}, ]; const AppRouter = createRouter({ history: createWebHistory(), routes, }); export default AppRouter;