1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-04-17 12:06:22 +02:00
2023-09-14 22:30:20 +12:00

14 lines
258 B
JavaScript

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