aboutsummaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
author135e2 <[email protected]>2022-07-24 16:36:58 +0800
committer135e2 <[email protected]>2022-07-24 17:49:29 +0800
commitc604a64eddd4bbe7111733ed9951b60d28774041 (patch)
tree8337c70a3e736bc2e795e4e307a365a7f798d6ab /src/main.js
downloadotonashi-c604a64eddd4bbe7111733ed9951b60d28774041.tar.gz
otonashi-c604a64eddd4bbe7111733ed9951b60d28774041.tar.bz2
otonashi-c604a64eddd4bbe7111733ed9951b60d28774041.zip
init
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js
new file mode 100644
index 0000000..04189aa
--- /dev/null
+++ b/src/main.js
@@ -0,0 +1,10 @@
+import { createApp } from "vue";
+import App from "./App.vue";
+import vuetify from "./plugins/vuetify";
+import { loadFonts } from "./plugins/webfontloader";
+
+loadFonts();
+
+const app = createApp(App);
+
+app.use(vuetify).mount("#app");