mirror of
https://github.com/serialexperiments0815/Dilomarkt---Digitaler-Lokalmarkt.git
synced 2026-07-12 15:32:19 +00:00
7 lines
161 B
JavaScript
7 lines
161 B
JavaScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router/index.js'
|
|
|
|
const app = createApp(App)
|
|
app.use(router)
|
|
app.mount('#app')
|