Add NoteCreation route and view

This commit is contained in:
2020-04-12 18:53:57 +02:00
parent 39e31fbdb1
commit 64c3693f73
2 changed files with 25 additions and 0 deletions
+6
View File
@@ -3,6 +3,7 @@ import VueRouter from 'vue-router'
import Home from '../views/Home.vue'
import Signup from '../views/Signup.vue'
import Signin from '../views/Signin.vue'
import NoteCreation from '../views/NoteCreation.vue'
Vue.use(VueRouter)
@@ -21,6 +22,11 @@ const routes = [
path: '/signin',
name: 'Signin',
component: Signin
},
{
path: '/note/new',
name: 'NoteCreation',
component: NoteCreation
}
]