Initial commit

This commit is contained in:
Kamil Klecha
2021-10-13 21:13:47 +02:00
commit ffed90ec4f
16 changed files with 27283 additions and 0 deletions

10
src/main.ts Normal file
View File

@@ -0,0 +1,10 @@
import Vue from 'vue'
import App from './App.vue'
import store from './store'
Vue.config.productionTip = false
new Vue({
store,
render: h => h(App)
}).$mount('#app')