aboutsummaryrefslogtreecommitdiff
path: root/src/router
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-06 20:58:56 -0700
committerFuwn <[email protected]>2021-05-06 20:58:56 -0700
commit0cba42093a403e00bd765eb24c22e1605d933c4d (patch)
tree393ec911e3f543aadaaab00334227ddcdeb59ecc /src/router
parentMerge pull request #3 from senpy-club/renovate/sass-1.x (diff)
downloadfrontend-0cba42093a403e00bd765eb24c22e1605d933c4d.tar.xz
frontend-0cba42093a403e00bd765eb24c22e1605d933c4d.zip
fix(router): title casing
Diffstat (limited to 'src/router')
-rw-r--r--src/router/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/router/index.ts b/src/router/index.ts
index c0fabee..9e4175b 100644
--- a/src/router/index.ts
+++ b/src/router/index.ts
@@ -4,12 +4,12 @@ import Home from '../views/Home.vue';
const routes: Array<RouteRecordRaw> = [
{
path: '/',
- name: 'Home',
+ name: 'home',
component: Home,
},
{
path: '/language/:lang',
- name: 'Language',
+ name: 'language',
component: () => import('../views/Language.vue'),
},
{