1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-01-18 03:22:06 +02:00
2023-09-22 15:06:03 +12:00

12 lines
253 B
JavaScript

import App from './App.vue'
import router from './router'
import { createApp } from 'vue'
import './assets/styles.scss'
import 'bootstrap-icons/font/bootstrap-icons.scss'
import 'bootstrap'
const app = createApp(App)
app.use(router)
app.mount('#app')