1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-04-19 12:12:26 +02:00

14 lines
258 B
JavaScript
Raw Normal View History

import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
2022-07-29 23:23:08 +12:00
import "./assets/styles.scss";
import "bootstrap-icons/font/bootstrap-icons.scss";
2022-07-29 23:23:08 +12:00
import "bootstrap";
const app = createApp(App)
app.use(router)
app.mount('#app')