advent22/ui/src/main.ts

13 lines
299 B
TypeScript
Raw Normal View History

2023-09-07 01:17:14 +00:00
import { Advent22Plugin } from "@/plugins/advent22";
import { FontAwesomePlugin } from "@/plugins/fontawesome";
import { createApp } from "vue";
import App from "./App.vue";
2022-10-28 00:14:20 +00:00
2023-09-07 01:17:14 +00:00
import "@/main.scss";
2022-10-30 01:27:46 +00:00
2023-09-07 01:17:14 +00:00
const app = createApp(App);
app.use(Advent22Plugin);
app.use(FontAwesomePlugin);
2022-11-03 15:04:57 +00:00
2023-09-07 01:17:14 +00:00
app.mount("#app");