mirror of
https://github.com/AkiChase/scrcpy-mask
synced 2025-02-23 15:32:17 +08:00
15 lines
306 B
TypeScript
15 lines
306 B
TypeScript
import { createApp } from "vue";
|
|
import { createPinia } from "pinia";
|
|
import "./styles.css";
|
|
import App from "./App.vue";
|
|
import router from "./router";
|
|
import i18n from "./i18n";
|
|
|
|
const pinia = createPinia();
|
|
|
|
const app = createApp(App);
|
|
app.use(router);
|
|
app.use(pinia);
|
|
app.use(i18n);
|
|
app.mount("#app");
|