loading result items with route

This commit is contained in:
2019-09-24 17:43:57 +02:00
parent 665a5154d7
commit eaa00aa244
3 changed files with 74 additions and 6 deletions
+7
View File
@@ -2,6 +2,7 @@ import Vue from 'vue'
import Router from 'vue-router'
import Home from 'pages/Home'
import Item from 'components/Content/Item'
import Corpus from 'pages/Corpus'
import Nominum from 'pages/Nominum'
import NominumItem from 'components/Content/NominumItem'
@@ -18,6 +19,12 @@ const routes = [
path: '/',
component: Home
},
{
name: 'item',
path: '/items/:uuid',
component: Item,
props: true
},
{
name: 'corpus',
path: '/corpus',