mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-27 01:43:08 +00:00
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
import { Advent22Plugin } from "@/plugins/advent22"
|
|
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
|
|
import "@/main.scss"
|
|
|
|
const app = createApp(App)
|
|
app.use(Advent22Plugin)
|
|
|
|
app.mount('#app')
|