| Total Complexity | 3 |
| Complexity/F | 1 |
| Lines of Code | 19 |
| Function Count | 3 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 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 |