Implemented basic Vue.js frontend (#222)

Co-authored-by: Adam Bem <adam.bem@zoho.eu>
Co-authored-by: widlam <mikolaj.widla@gmail.com>
Reviewed-on: #222
Reviewed-by: Mikolaj Widla <widlam@noreply.example.com>
This commit is contained in:
2023-06-14 11:25:59 +02:00
parent 3c5798cfa2
commit 7d0cb03bf5
100 changed files with 4343 additions and 24153 deletions

5
Frontend/src/main.ts Normal file
View File

@@ -0,0 +1,5 @@
import { createApp } from 'vue';
import router from "./router";
import App from './App.vue';
createApp(App).use(router).mount('#app')