diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-04-13 23:15:46 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-04-13 23:15:46 -0500 |
| commit | 72e980b857ffac4c362d3d4b6689d251fac6a750 (patch) | |
| tree | f347c443c1e8efe6d244af7e06e11aececa5c00b /src/router | |
| parent | 569488c24ac0ee5c4cca9adfb0dc3f3aa9e7eca4 (diff) | |
| parent | 5433214aa9b2cd3dd3445f9f2db297d4a6f2e670 (diff) | |
Merge pull request #2 from cobraguy/styling
Add styling and dark mode
Diffstat (limited to 'src/router')
| -rw-r--r-- | src/router/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/router/index.ts b/src/router/index.ts index 7a598b3..a36cb7e 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -1,12 +1,12 @@ import { createRouter, createWebHashHistory } from 'vue-router'; import Editor from '../views/Editor.vue'; -import About from '../views/About.vue'; +import Start from '../views/Start.vue'; const routes = [ { path: '/', - name: 'About', - component: About, + name: 'Start', + component: Start, }, { path: '/editor', |
