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