web-app/src/modules/chat/views/ChatPage.vue
padreug e40ac91417 Enhance market module with new chat and events features
- Introduce chat module with components, services, and composables for real-time messaging.
- Implement events module with API service, components, and ticket purchasing functionality.
- Update app configuration to include new modules and their respective settings.
- Refactor existing components to integrate with the new chat and events features.
- Enhance market store and services to support new functionalities and improve order management.
- Update routing to accommodate new views for chat and events, ensuring seamless navigation.
2025-09-05 00:01:40 +02:00

9 lines
No EOL
179 B
Vue

<template>
<div class="h-full w-full">
<ChatComponent />
</div>
</template>
<script setup lang="ts">
import ChatComponent from '../components/ChatComponent.vue'
</script>