Total Complexity | 2 |
Complexity/F | 2 |
Lines of Code | 22 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import SmallRadialBarChart from '@/vue/charts/common/SmallRadialBarChart.vue'; |
||
2 | import SmallSimpleBarChart from '@/vue/charts/common/SmallSimpleBarChart.vue'; |
||
3 | import SmallSamplePaneFooter from '@/vue/common/SmallSamplePaneFooter.vue'; |
||
4 | |||
5 | // Create our vue instance |
||
6 | const vm = new Vue({ |
||
7 | el: "#cp-nav-content", |
||
8 | components: { |
||
9 | 'small-radial-bar-chart': SmallRadialBarChart, |
||
10 | 'small-simple-bar-chart': SmallSimpleBarChart, |
||
11 | 'small-sample-pane-footer': SmallSamplePaneFooter, |
||
12 | }, |
||
13 | data: { |
||
14 | }, |
||
15 | mounted() { |
||
16 | }, |
||
17 | }); |
||
18 | |||
19 | // Accept HMR as per: https://webpack.js.org/api/hot-module-replacement#accept |
||
20 | if (module.hot) { |
||
21 | module.hot.accept(); |
||
22 | } |
||
23 |