mirror of
https://github.com/gedoor/legado.git
synced 2025-08-10 00:52:30 +00:00
9 lines
213 B
JavaScript
9 lines
213 B
JavaScript
import { createApp } from "vue";
|
|
import App from "./App.vue";
|
|
import router from "@/router";
|
|
import store from "@/store";
|
|
|
|
createApp(App).use(store).use(router).mount("#app");
|
|
|
|
import("./pages/bookshelf/config");
|