Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'js/init.js')
-rw-r--r--js/init.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/js/init.js b/js/init.js
index 652fb67..2dd76ca 100644
--- a/js/init.js
+++ b/js/init.js
@@ -1 +1,9 @@
-console.log('henlo');
+import Vue from "vue"
+
+import SettingsView from "view/settings.vue"
+
+Vue.config.productionTip = false
+
+new Vue({
+ render: h => h(SettingsView)
+}).$mount('#twofactor-sms-section')