Plumb Responses from WASM to JS in the page

This commit is contained in:
Keavon Chambers
2021-04-10 02:48:33 -07:00
parent 934286b1bd
commit 958d351505
8 changed files with 104 additions and 112 deletions
+3
View File
@@ -1,4 +1,7 @@
import { createApp } from "vue";
import App from "./App.vue";
import { attachResponseHandlerToPage } from "./response-handler";
attachResponseHandlerToPage();
createApp(App).mount("#app");