Migrate frontend from Thymeleaf and basic JS to Vue.js application

This commit is contained in:
2025-07-19 20:30:53 +02:00
parent dc6314384d
commit 84cbf9be89
34 changed files with 1988 additions and 0 deletions

16
frontend/src/App.vue Normal file
View File

@@ -0,0 +1,16 @@
<template>
<div id="app">
<ChatLayout />
</div>
</template>
<script setup>
import ChatLayout from './components/ChatLayout.vue'
</script>
<style>
#app {
height: 100vh;
width: 100vw;
}
</style>