summaryrefslogtreecommitdiff
path: root/src
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
downloadtauri-vue-1a8d4449192b17c67f615faef44a1993efbac142.tar.xz
tauri-vue-1a8d4449192b17c67f615faef44a1993efbac142.zip
Diffstat (limited to 'src')
-rw-r--r--src/App.vue3
-rw-r--r--src/main.js8
2 files changed, 11 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue
new file mode 100644
index 0000000..1b321cc
--- /dev/null
+++ b/src/App.vue
@@ -0,0 +1,3 @@
+<template>
+ <p>tauri-vue</p>
+</template>
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");