mirror of
https://github.com/axllent/mailpit.git
synced 2025-01-16 02:47:11 +02:00
19 lines
446 B
JavaScript
19 lines
446 B
JavaScript
import App from './App.vue'
|
|
import router from './router'
|
|
import { createApp } from 'vue'
|
|
import mitt from 'mitt';
|
|
|
|
import './assets/styles.scss'
|
|
import 'bootstrap-icons/font/bootstrap-icons.scss'
|
|
import 'bootstrap'
|
|
|
|
const app = createApp(App)
|
|
|
|
// Global event bus used to subscribe to websocket events
|
|
// such as message deletes, updates & truncation.
|
|
const eventBus = mitt()
|
|
app.provide('eventBus', eventBus)
|
|
|
|
app.use(router)
|
|
app.mount('#app')
|