mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 10:57:07 +00:00
Add planner component to site
This commit is contained in:
@@ -44,6 +44,7 @@ export default {
|
||||
tabs: [
|
||||
{ href: "summary", text: "Summary" },
|
||||
{ href: "lines", text: "Lines" },
|
||||
{ href: "plan", text: "Plan" },
|
||||
{ href: "sequences", text: "Sequences" },
|
||||
{ href: "calendar", text: "Calendar" },
|
||||
{ href: "log", text: "Log" },
|
||||
|
||||
@@ -5,6 +5,7 @@ import Project from '../views/Project.vue'
|
||||
import ProjectList from '../views/ProjectList.vue'
|
||||
import ProjectSummary from '../views/ProjectSummary.vue'
|
||||
import LineList from '../views/LineList.vue'
|
||||
import Plan from '../views/Plan.vue'
|
||||
import LineSummary from '../views/LineSummary.vue'
|
||||
import SequenceList from '../views/SequenceList.vue'
|
||||
import SequenceSummary from '../views/SequenceSummary.vue'
|
||||
@@ -78,6 +79,11 @@ Vue.use(VueRouter)
|
||||
name: "LineList",
|
||||
component: LineList
|
||||
},
|
||||
{
|
||||
path: "plan/",
|
||||
name: "Plan",
|
||||
component: Plan
|
||||
},
|
||||
{
|
||||
path: "lines/:line",
|
||||
name: "Line",
|
||||
|
||||
Reference in New Issue
Block a user