Spaces:
Paused
Paused
File size: 328 Bytes
6c9a6da | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
import router from './router'
import lazyplugin from 'vue3-lazy'
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.use(lazyplugin, {
loading: 'loading.png',
error: 'loading.png'
})
app.mount('#app')
|