First commit

This commit is contained in:
2026-03-27 10:14:29 +03:00
commit ad29150770
10404 changed files with 962562 additions and 0 deletions

12
app.js Normal file
View File

@@ -0,0 +1,12 @@
import Vue from "vue"
import App from "./src/App.vue"
import Vuex from "vuex"
import store from "./src/store"
Vue.use(Vuex)
new Vue({
el: "#app",
store,
render: h => h(App)
})