This commit is contained in:
Casey Wittrock 2025-10-19 22:57:58 -05:00
parent c5e27c0f70
commit 309925c191
28 changed files with 1757 additions and 4 deletions

5
frontend/src/main.js Normal file
View file

@ -0,0 +1,5 @@
import { createApp } from "vue";
import "./style.css";
import App from "./App.vue";
createApp(App).mount("#custom-ui-app");