mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-07-16 08:50:55 -05:00
18 lines
320 B
JavaScript
18 lines
320 B
JavaScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
|
|
import { initializeI18n } from './common/i18n'
|
|
|
|
import App from './App.vue'
|
|
import router from './router/screenshots'
|
|
|
|
const i18n = initializeI18n();
|
|
|
|
const app = createApp(App)
|
|
|
|
app.use(i18n)
|
|
app.use(createPinia())
|
|
app.use(router)
|
|
|
|
app.mount('#app')
|