<script setup lang="ts"> import ChatBox from './components/ChatBox.vue' </script> <template> <ChatBox v-for="item in 4" :key="item" :userName="`user_${item}`" topicId="chat_test" /> </template> <style scoped> </style>