Completed
Push — master ( 16758d...149bc6 )
by Karl
15:57 queued 03:39
created

resources/assets/js/app.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 13
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 0
dl 0
loc 13
rs 10
c 0
b 0
f 0
cc 0
nc 1
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 2
1
2
/**
3
 * First we will load all of this project's JavaScript dependencies which
4
 * include Vue and Vue Resource. This gives a great starting point for
5
 * building robust, powerful web applications using Vue and Laravel.
6
 */
7
8
require('./bootstrap');
9
10
/**
11
 * Next, we will create a fresh Vue application instance and attach it to
12
 * the body of the page. From here, you may begin adding components to
13
 * the application, or feel free to tweak this setup for your needs.
14
 */
15
16
Vue.component('example', require('./components/Example.vue'));
0 ignored issues
show
Bug introduced by
The variable Vue seems to be never declared. If this is a global, consider adding a /** global: Vue */ comment.

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.

Loading history...
17
18
const app = new Vue({
0 ignored issues
show
Unused Code introduced by
The constant app seems to be never used. Consider removing it.
Loading history...
19
    el: 'body'
20
});
21