home-cert-assistant/frontend/src/main.ts
Torge Hamann 254f2f09ec
🎉 Initial template frontend setup (#1)
* Initial frontend setup

* Adapt template to home cert manager
2024-11-17 17:47:13 +01:00

11 lines
175 B
TypeScript

import { registerPlugins } from '@/plugins'
import App from './App.vue'
import { createApp } from 'vue'
const app = createApp(App)
registerPlugins(app)
app.mount('#app')