wip moved canvas routine in store. it's awful

This commit is contained in:
Gator
2022-12-01 12:03:34 +01:00
parent 999f6d1899
commit aace63b1a2
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')