accounting/frontend/main.js

21 lines
309 B
JavaScript
Raw Normal View History

2024-01-16 15:13:04 +00:00
/* eslint-disable sort-imports */
import { createApp, h } from 'vue'
import './style.scss'
import appMain from './components/app.vue'
import router from './router.js'
const app = createApp({
name: 'AccountingApp',
render() {
return h(appMain)
},
router,
})
app.use(router)
app.mount('#app')