mirror of
https://github.com/TwiN/gatus.git
synced 2026-03-22 23:40:08 +00:00
7 lines
153 B
JavaScript
7 lines
153 B
JavaScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import './index.css'
|
|
import router from './router'
|
|
|
|
createApp(App).use(router).mount('#app')
|