diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-04-13 12:49:14 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-04-13 12:49:14 -0500 |
| commit | 65d0dbb9b3388e03c312c1dd456feeef740289e0 (patch) | |
| tree | 9916793d0b760eb62b4102ca151c4802ea6e44ee /src/router/index.ts | |
| parent | 6a152d5cf5f35bc58fc4b659fe6edcb6f94f760c (diff) | |
Start styling and add initial dark mode support
Diffstat (limited to 'src/router/index.ts')
| -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', |
