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