wip moved canvas routine in store. it's awful

This commit is contained in:
2022-12-01 12:03:34 +01:00
parent c5d7c985d8
commit a5445519d8
7 changed files with 376 additions and 300 deletions

View File

@ -2,8 +2,12 @@ import { createApp } from 'vue'
import App from "./App.vue";
import { store } from "./store";
const gobalsProperties = {'canvas': null};
const app = createApp(App)
app.provide('gobalsProperties', gobalsProperties)
app.use(store)
app.mount('#app')