19 lines
340 B
Vue
19 lines
340 B
Vue
<script setup lang="ts">
|
|
import WebSocketDemo from './components/WebSocketDemo.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div id="app">
|
|
<WebSocketDemo />
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
#app {
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
padding: 20px;
|
|
}
|
|
</style>
|