| | |
| | | import Mine from "../views/Mine.vue"; |
| | | import Project from "../views/Project.vue"; |
| | | import Overview from "../views/Overview.vue"; |
| | | import list from "../views/list.vue"; |
| | | import calendarTask from "../views/calendarTask.vue"; |
| | | import square from "../components/square.vue"; |
| | | |
| | | |
| | | import actualPayment from "../components/finance/actualPayment.vue"; |
| | | import completeStatistics from "../components/finance/completeStatistics.vue"; |
| | | import partTimeExpenses from "../components/finance/partTimeExpenses.vue"; |
| | | import costAccounting from "../components/finance/costAccounting.vue"; |
| | | import collectionStatistics from "../components/finance/collectionStatistics.vue"; |
| | | |
| | | |
| | | |
| | | Vue.use(VueRouter); |
| | | |
| | |
| | | components:{ |
| | | home: Overview |
| | | } |
| | | },{ |
| | | path: "list", |
| | | name: "list", |
| | | components:{ |
| | | home: list |
| | | } |
| | | }, |
| | | { |
| | | path: "calendarTask", |
| | |
| | | } |
| | | }, |
| | | { |
| | | path: "project2", |
| | | name: "project2", |
| | | path: "square", |
| | | name: "square", |
| | | components:{ |
| | | home: Project |
| | | home: square |
| | | } |
| | | }, |
| | | |
| | | { |
| | | path: "actualPayment", |
| | | name: "actualPayment", |
| | | components:{ |
| | | home: actualPayment |
| | | } |
| | | }, |
| | | { |
| | | path: "project3", |
| | | name: "project3", |
| | | path: "completeStatistics", |
| | | name: "completeStatistics", |
| | | components:{ |
| | | home: Project |
| | | home: completeStatistics |
| | | } |
| | | }, |
| | | { |
| | | path: "project4", |
| | | name: "project4", |
| | | path: "partTimeExpenses", |
| | | name: "partTimeExpenses", |
| | | components:{ |
| | | home: Project |
| | | home: partTimeExpenses |
| | | } |
| | | }, |
| | | { |
| | | path: "project5", |
| | | name: "project5", |
| | | path: "costAccounting", |
| | | name: "costAccounting", |
| | | components:{ |
| | | home: Project |
| | | home: costAccounting |
| | | } |
| | | }, |
| | | { |
| | | path: "project6", |
| | | name: "project6", |
| | | path: "collectionStatistics", |
| | | name: "collectionStatistics", |
| | | components:{ |
| | | home: Project |
| | | home: collectionStatistics |
| | | } |
| | | } |
| | | }, |
| | | ] |
| | | }, |
| | | |