summary refs log tree commit diff stats
path: root/client/src/router/index.js
blob: a2f52ac0ebdb9966730a80f2b869e4b5e83e9bb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { createRouter, createWebHistory } from 'vue-router';

import Home from '../views/Home.vue';
import CreateSmiles from '../views/CreateSmiles.vue';
import GetSmile from '../views/GetSmile.vue';
import ManageSmiles from '../views/ManageSmiles.vue';

const routes = [
    {
        path: '/',
        name: 'Home',
        component: Home
    },
    {
        path: '/create',
        name: 'CreateSmiles',
        // route level code-splitting
        // this generates a separate chunk (about.[hash].js) for this route
        // which is lazy-loaded when the route is visited.
        // component: () => import(/* webpackChunkName: "about" */ '../views/NewSmile.vue')
        component: CreateSmiles
    },
    {
        path: '/:id',
        name: 'GetSmile',
        component: GetSmile
    },
    {
        path: '/:id/:auth',
        name: 'ManageSmiles',
        component: ManageSmiles
    }
];

const router = createRouter({
    history: createWebHistory(process.env.BASE_URL),
    routes
});

export default router;