mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-11 03:49:07 +00:00
18 lines
365 B
TypeScript
18 lines
365 B
TypeScript
import { createApp } from "vue";
|
|
import router from "./routes";
|
|
import store from "./store";
|
|
import Toast from "./plugins/Toast";
|
|
|
|
import App from "./App.vue";
|
|
|
|
store.dispatch("darkmodeModule/findAndSetDarkmodeSupported");
|
|
store.dispatch("user/initUserFromCookie");
|
|
|
|
const app = createApp(App);
|
|
|
|
app.use(router);
|
|
app.use(store);
|
|
app.use(Toast);
|
|
|
|
app.mount("#app");
|