diff options
author | 135e2 <[email protected]> | 2022-07-24 16:36:58 +0800 |
---|---|---|
committer | 135e2 <[email protected]> | 2022-07-24 17:49:29 +0800 |
commit | c604a64eddd4bbe7111733ed9951b60d28774041 (patch) | |
tree | 8337c70a3e736bc2e795e4e307a365a7f798d6ab /src/main.js | |
download | otonashi-c604a64eddd4bbe7111733ed9951b60d28774041.tar.gz otonashi-c604a64eddd4bbe7111733ed9951b60d28774041.tar.bz2 otonashi-c604a64eddd4bbe7111733ed9951b60d28774041.zip |
init
Diffstat (limited to 'src/main.js')
-rw-r--r-- | src/main.js | 10 |
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"); |