(feat): init commit of Vue frontend

This commit is contained in:
Blake Ridgway 2024-12-18 11:12:33 -06:00
parent 1f810cc0c9
commit f2fab8801c
8 changed files with 179 additions and 70 deletions

View file

@ -1,4 +1,7 @@
import { createApp } from 'vue'
import App from './App.vue'
import { createApp } from 'vue';
import App from './App.vue';
import router from './router';
createApp(App).mount('#app')
const app = createApp(App);
app.use(router);
app.mount('#app');