drawing logic back into component

This commit is contained in:
2022-12-01 20:37:03 +01:00
parent 373b49cc6b
commit 0276a4973e
6 changed files with 286 additions and 295 deletions

View File

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