tremble 2 년 전
부모
커밋
04602c3afd
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/components/RTC/dialog/createdRoom.vue

+ 2 - 2
src/components/RTC/dialog/createdRoom.vue

@@ -30,10 +30,9 @@
 <script setup>
 import { useI18n, getLocale } from "@/i18n";
 import { ref } from "vue";
-
 const { t } = useI18n({ useScope: "global" });
+const name = ref('')
 
-const userName = ref('')
 </script>
 
 <script>
@@ -59,6 +58,7 @@ export default {
       store: useStore(),
       roomId: browser.getURLParam("roomId"),
       $t: this.t,
+      userName:this.name
     };
   },