summaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-02-21 18:30:25 -0800
committerGitHub <[email protected]>2021-02-21 18:30:25 -0800
commit1a8d4449192b17c67f615faef44a1993efbac142 (patch)
tree3732be235698b60ba71622a95da719bc2480de0f /src/main.js
downloadtauri-vue-master.tar.xz
tauri-vue-master.zip
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js
new file mode 100644
index 0000000..d46111e
--- /dev/null
+++ b/src/main.js
@@ -0,0 +1,8 @@
+import Vue from "vue";
+import App from "./App.vue";
+
+Vue.config.productionTip = false;
+
+new Vue({
+ render: (h) => h(App),
+}).$mount("#app");