|
@@ -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
|
|
|
};
|
|
|
},
|
|
|
|