Vue init (#47)

This commit is contained in:
Geometrically
2023-02-27 09:11:34 -07:00
committed by GitHub
parent e591b7120a
commit c204caa350
58 changed files with 727 additions and 6666 deletions

5
theseus_gui/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("#app");