refactor(routes): quotation

This commit is contained in:
Methapon2001 2024-07-25 09:27:58 +07:00
parent 6215338e58
commit fac28cfc67
5 changed files with 5 additions and 5 deletions

View file

@ -2,8 +2,8 @@
import { ref } from 'vue';
import { Icon } from '@iconify/vue';
import MainDialog from 'components/05_buy-sale/MainDialog.vue';
import WorkerItem from 'components/05_buy-sale/WorkerItem.vue';
import MainDialog from 'components/05_quotation/MainDialog.vue';
import WorkerItem from 'components/05_quotation/WorkerItem.vue';
import AppBox from 'components/app/AppBox.vue';
const dialogState = ref(true);

View file

@ -32,9 +32,9 @@ const routes: RouteRecordRaw[] = [
component: () => import('pages/04_product-service/MainPage.vue'),
},
{
path: '/buy-sale',
name: 'BuySale',
component: () => import('pages/05_buy-sale/MainPage.vue'),
path: '/quotation',
name: 'Quotation',
component: () => import('pages/05_quotation/MainPage.vue'),
},
],
},