mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:57:08 +00:00
Add graphs/ route to client
This commit is contained in:
@@ -14,6 +14,7 @@ import SequenceSummary from '../views/SequenceSummary.vue'
|
||||
import Calendar from '../views/Calendar.vue'
|
||||
import Log from '../views/Log.vue'
|
||||
import QC from '../views/QC.vue'
|
||||
import Graphs from '../views/Graphs.vue'
|
||||
import Map from '../views/Map.vue'
|
||||
|
||||
|
||||
@@ -150,6 +151,16 @@ Vue.use(VueRouter)
|
||||
path: "qc",
|
||||
component: QC
|
||||
},
|
||||
{
|
||||
path: "graphs",
|
||||
component: Graphs,
|
||||
children: [
|
||||
{ path: "sequence/:sequence", name: "graphsBySequence" },
|
||||
{ path: "sequence/:sequence0/:sequence1", name: "graphsBySequences" },
|
||||
{ path: "date/:date0", name: "graphsByDate" },
|
||||
{ path: "date/:date0/:date1", name: "graphsByDates" }
|
||||
]
|
||||
},
|
||||
{
|
||||
path: "map",
|
||||
name: "map",
|
||||
|
||||
Reference in New Issue
Block a user