mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-15 09:48:14 +08:00
26 lines
618 B
TypeScript
26 lines
618 B
TypeScript
/**
|
|
* @file main.ts
|
|
* @description Main entry
|
|
* @since Beta v0.3.3
|
|
*/
|
|
|
|
import { createApp } from "vue";
|
|
import { createVuetify } from "vuetify";
|
|
|
|
import App from "./App.vue";
|
|
import router from "./router";
|
|
import store from "./store";
|
|
|
|
import "@mdi/font/css/materialdesignicons.css";
|
|
import "vuetify/styles";
|
|
import "./assets/index.css";
|
|
import "https://static.geetest.com/static/js/gt.0.4.9.js";
|
|
|
|
if (import.meta.env.MODE === "development") {
|
|
await import("@vue/devtools").then((i) => {
|
|
i.default.connect(/* host, port */);
|
|
});
|
|
}
|
|
|
|
createApp(App).use(router).use(store).use(createVuetify()).mount("#app");
|