diff options
| author | Fuwn <[email protected]> | 2021-02-21 18:30:25 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-02-21 18:30:25 -0800 |
| commit | 1a8d4449192b17c67f615faef44a1993efbac142 (patch) | |
| tree | 3732be235698b60ba71622a95da719bc2480de0f /src | |
| download | tauri-vue-master.tar.xz tauri-vue-master.zip | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/App.vue | 3 | ||||
| -rw-r--r-- | src/main.js | 8 |
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");
|