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 22fe11b950
commit 4c546b2819
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");