splatoon3.ink/src/screenshots.js
2022-08-28 20:45:21 -07:00

13 lines
226 B
JavaScript

import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
import router from './router/screenshots'
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.mount('#app')