Completed
Push — master ( 8bb44c...0740d4 )
by Vitor
16s queued 14s
created

js/init.js   A

Complexity

Total Complexity 3
Complexity/F 1

Size

Lines of Code 19
Function Count 3

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 3
eloc 14
mnd 0
bc 0
fnc 3
dl 0
loc 19
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
rs 10
1
import Vue from "vue"
2
3
import SignalSettings from "views/SignalSettings.vue"
4
import SMSSettings from "views/SMSSettings.vue"
5
import TelegramSettings from "views/TelegramSettings.vue"
6
7
Vue.config.productionTip = false
8
9
new Vue({
10
    render: h => h(SignalSettings)
11
}).$mount('#twofactor-gateway-signal')
12
13
new Vue({
14
    render: h => h(SMSSettings)
15
}).$mount('#twofactor-gateway-sms')
16
17
new Vue({
18
    render: h => h(TelegramSettings)
19
}).$mount('#twofactor-gateway-telegram')
20