liyabo 3 lat temu
rodzic
commit
45019bcb89
1 zmienionych plików z 3 dodań i 14 usunięć
  1. 3 14
      src/views/home.vue

+ 3 - 14
src/views/home.vue

@@ -1,18 +1,12 @@
 <template>
   <div class="dashboard-container">
     <div class="dashboard-editor-container">
-      <panel-group @handleSetLineChartData="handleSetLineChartData" />
-      <jrcp ref="jrcp" />
-      <mclz ref="mclz" />
+     
     </div>
   </div>
 </template>
 
 <script>
-import PanelGroup from './dashboard/PanelGroup'
-import jrcp from './dashboard/jrcp'
-import mclz from './dashboard/mclz'
-
 const lineChartData = {
   newVisitis: {
     expectedData: [100, 120, 161, 134, 105, 160, 165],
@@ -35,19 +29,14 @@ const lineChartData = {
 export default {
   name: 'Dashboard',
   components: {
-    PanelGroup,
-    jrcp,
-    mclz
+    
   },
   data() {
     return {
-      lineChartData: lineChartData.newVisitis
     }
   },
   methods: {
-    handleSetLineChartData(type) {
-      this.lineChartData = lineChartData[type]
-    }
+   
   }
 }
 </script>