| | |
| | | import { createRouter, createWebHistory } from 'vue-router' |
| | | import {createRouter, createWebHashHistory, createWebHistory} from 'vue-router' |
| | | |
| | | const router = createRouter({ |
| | | history: createWebHistory(import.meta.env.BASE_URL), |
| | | history: createWebHashHistory(), |
| | | routes: [ |
| | | |
| | | { |
| | |
| | | component: () => import('@/views/order/OrderHistoryView.vue'), |
| | | }, |
| | | { |
| | | path: '/orderInquiry', |
| | | name: 'orderInquiry', |
| | | component: () => import('@/views/order/OrderInquiryView.vue'), |
| | | }, |
| | | { |
| | | path: '/register', |
| | | name: 'register', |
| | | component: () => import('@/views/RegisterView.vue'), |