resources/js/frontend/main.js   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 14
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 10
c 0
b 0
f 0
dl 0
loc 14
rs 10
wmc 1
mnd 0
bc 0
fnc 1
bpm 0
cpm 1
noi 1
1
import Vue from 'vue'
2
import App from './App.vue'
3
import store from './store'
4
import router from './router'
5
6
Vue.config.productionTip = false
7
8
/* eslint-disable no-new */
9
new Vue({
0 ignored issues
show
Unused Code Best Practice introduced by
The object created with new Vue({IdentifierNode(...false))),false,true))}) is not used but discarded. Consider invoking another function instead of a constructor if you are doing this purely for side effects.
Loading history...
10
  el: '#vue-frontend-app',
11
  store,
12
  router,
13
  render: h => h(App)
14
})
15