Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 18 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | |||
8 | require('./bootstrap'); |
||
9 | |||
10 | /** |
||
11 | * Next, we will create a fresh Vue application instance and attach it to |
||
12 | * the page. Then, you may begin adding components to this application |
||
13 | * or customize the JavaScript scaffolding to fit your unique needs. |
||
14 | */ |
||
15 | |||
16 | Vue.component('favourite', require('./components/Favourite.vue')); |
||
|
|||
17 | Vue.component('top-users', require('./components/TopUsers.vue')); |
||
18 | |||
19 | const app = new Vue({ |
||
20 | el: '#app' |
||
21 | }); |
||
22 | |||
23 | import autosize from 'autosize'; |
||
24 | |||
25 | autosize($('textarea')); |
||
26 |
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.