advent22/ui/src/main.ts

13 lines
290 B
TypeScript
Raw Normal View History

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