File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,9 @@ const routes = [
17
17
// this generates a separate chunk (about.[hash].js) for this route
18
18
// which is lazy-loaded when the route is visited.
19
19
component : ( ) =>
20
- import ( /* webpackChunkName: "dashboard" */ '@/views/Dashboard.vue' ) ,
20
+ import (
21
+ /* webpackChunkName: "dashboard" */ '@/views/dashboard/Dashboard.vue'
22
+ ) ,
21
23
} ,
22
24
{
23
25
path : '/theme' ,
Original file line number Diff line number Diff line change 28
28
</CCol >
29
29
</CRow >
30
30
<CRow >
31
- <MainChartExample
31
+ <MainChart
32
32
style =" height : 300px ; max-height : 300px ; margin-top : 40px "
33
33
/>
34
34
</CRow >
@@ -275,14 +275,14 @@ import avatar3 from '@/assets/images/avatars/3.jpg'
275
275
import avatar4 from ' @/assets/images/avatars/4.jpg'
276
276
import avatar5 from ' @/assets/images/avatars/5.jpg'
277
277
import avatar6 from ' @/assets/images/avatars/6.jpg'
278
- import MainChartExample from ' ./charts/MainChartExample '
279
- import WidgetsStatsA from ' ./widgets/WidgetsStatsTypeA.vue'
280
- import WidgetsStatsD from ' ./widgets/WidgetsStatsTypeD.vue'
278
+ import MainChart from ' ./MainChart '
279
+ import WidgetsStatsA from ' ./../ widgets/WidgetsStatsTypeA.vue'
280
+ import WidgetsStatsD from ' ./../ widgets/WidgetsStatsTypeD.vue'
281
281
282
282
export default {
283
283
name: ' Dashboard' ,
284
284
components: {
285
- MainChartExample ,
285
+ MainChart ,
286
286
WidgetsStatsA,
287
287
WidgetsStatsD,
288
288
},
File renamed without changes.
You can’t perform that action at this time.
0 commit comments