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