Don't copy App

This commit is contained in:
thepaperpilot 2022-03-03 21:41:59 -06:00
parent 46fc9ea1ba
commit 8f7acf2e17

View file

@ -47,9 +47,7 @@ requestAnimationFrame(async () => {
const { globalBus, startGameLoop } = await require("./game/events");
// Create Vue
const vue = (window.vue = createApp({
...App
}));
const vue = (window.vue = createApp(App));
globalBus.emit("setupVue", vue);
vue.mount("#app");