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