| | |
| | | <template #leftBlock1> |
| | | <StatisticalBox></StatisticalBox> |
| | | </template> |
| | | <template #rightBlock2> |
| | | <MaterialChart @should-reload="reloadAllData"></MaterialChart> |
| | | </template> |
| | | <template #rightBlock3> |
| | | <BarChart @should-reload="reloadAllData"></BarChart> |
| | | </template> |
| | |
| | | <script> |
| | | import StatisticalBox from "@/views/cockpitPage/components/StatisticalBox"; |
| | | import BackgroundBoardLayout from "@/components/cockpitPage/BackgroundBoardLayout.vue"; |
| | | import MaterialChart from "@/views/cockpitPage/components/MaterialChart.vue"; |
| | | import BarChart from "@/views/cockpitPage/components/BarChart.vue"; |
| | | export default { |
| | | components: { |
| | | StatisticalBox, |
| | | BackgroundBoardLayout, |
| | | MaterialChart, |
| | | BarChart, |
| | | }, |
| | | props: {}, |