Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 17 |
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 |
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.