Browse Source

update1025

tremble 2 năm trước cách đây
mục cha
commit
312c344659
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      src/components/RTC/dialog/createdRoom.vue

+ 4 - 1
src/components/RTC/dialog/createdRoom.vue

@@ -29,7 +29,11 @@
 
 <script setup>
 import { useI18n, getLocale } from "@/i18n";
+import { ref } from "vue";
+
 const { t } = useI18n({ useScope: "global" });
+
+const userName = ref('')
 </script>
 
 <script>
@@ -53,7 +57,6 @@ export default {
         },
       ],
       store: useStore(),
-      userName: "",
       roomId: browser.getURLParam("roomId"),
       $t: this.t,
     };