15 lines
306 B
Vue
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>
|