stubs/js/app.js   A
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 16
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 0
c 0
b 0
f 0
dl 0
loc 16
rs 10
cc 0
nc 1
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 1
1
2
/**
3
 * First we will load all of this project's JavaScript dependencies which
4
 * includes Vue and other libraries. It is a great starting point when
5
 * building robust, powerful web applications using Vue and Laravel.
6
 */
7
8
require('./bootstrap');
9
require('./components');
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
/** global: Vue */
18
19
Vue.component('example', require('./components/Example.vue'));
20
21
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...
22
    el: '#app'
23
});
24