mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-23 00:03:07 +00:00
14 lines
360 B
TypeScript
14 lines
360 B
TypeScript
import { Advent22Plugin } from "@/plugins/advent22";
|
|
import { FontAwesomePlugin } from "@/plugins/fontawesome";
|
|
import { createPinia } from "pinia";
|
|
import { createApp } from "vue";
|
|
import App from "./App.vue";
|
|
|
|
import "@/main.scss";
|
|
|
|
const app = createApp(App);
|
|
app.use(Advent22Plugin);
|
|
app.use(FontAwesomePlugin);
|
|
app.use(createPinia());
|
|
|
|
app.mount("#app");
|