Store i responsywność inputów

This commit is contained in:
2022-06-10 16:50:04 +02:00
parent 67cfb93cb0
commit 8271756b9b
8 changed files with 443 additions and 370 deletions
+5 -5
View File
@@ -1,6 +1,6 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import { createApp } from 'vue';
import App from './App.vue';
import router from './router';
import { createPinia } from 'pinia';
createApp(App).use(store).use(router).mount('#app')
createApp(App).use(router).use(createPinia()).mount('#app');