thingsboard-html-demo/src/App.vue

19 lines
340 B
Vue
Raw Normal View History

2025-12-04 16:30:40 +08:00
<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>