accounting/frontend/main.js

23 lines
370 B
JavaScript
Raw Normal View History

2024-01-16 15:13:04 +00:00
/* eslint-disable sort-imports */
import { createApp, h } from 'vue'
import VueShortkey from 'vue3-shortkey'
2024-01-16 15:13:04 +00:00
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.use(VueShortkey)
2024-01-16 15:13:04 +00:00
app.mount('#app')