1
0

Added method to create a new list

This commit is contained in:
konrad
2018-09-09 21:28:07 +02:00
parent 27e2192747
commit 5ff4f5eb46
4 changed files with 105 additions and 7 deletions

View File

@ -7,6 +7,7 @@ import LoginComponent from '@/components/user/Login'
import RegisterComponent from '@/components/user/Register'
// List Handling
import ShowListComponent from '@/components/lists/ShowList'
import NewListComponent from '@/components/lists/NewList'
Vue.use(Router)
@ -31,6 +32,11 @@ export default new Router({
path: '/lists/:id',
name: 'showList',
component: ShowListComponent
},
{
path: '/namespaces/:id',
name: 'newList',
component: NewListComponent
}
]
})