Implemented item view

This commit is contained in:
2020-11-26 19:48:43 +01:00
parent 6a63392b09
commit 60f026b6d9
8 changed files with 103 additions and 29 deletions

View File

@@ -2,7 +2,7 @@ import Vue from 'vue'
import VueRouter from 'vue-router'
import Collections from '@/views/Collections.vue'
import Collection from "@/views/Collection";
import Track from "@/views/Track";
import Item from "@/views/Item";
import Login from "@/views/Login";
@@ -32,9 +32,9 @@ const routes = [
}
},
{
path: '/track/:id',
name: 'Track',
component: Track,
path: '/item/:id',
name: 'Item',
component: Item,
meta: {
allowVisit(authorized) {
return authorized;