Files
websocket-qris/examples/clientsocket/pages/index.vue
2025-09-24 18:42:16 +07:00

15 lines
306 B
Vue

<template>
<div>
<WebSocketClient />
</div>
</template>
<script setup lang="ts">
// Main page for the WebSocket client application
// This page serves as the entry point and displays the WebSocket client interface
</script>
<style scoped>
/* Additional page-specific styles if needed */
</style>