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

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

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