|
@@ -9,7 +9,7 @@
|
|
|
<router-link to="/" v-slot="{ isActive }">
|
|
|
<span :class="{ active: isActive }">{{ t('room.myRoom') }}</span>
|
|
|
</router-link>
|
|
|
- <router-link to="/statistic" v-slot="{ isActive }">
|
|
|
+ <router-link to="/statistic" v-slot="{ isActive }" v-if="!isInternational">
|
|
|
<span :class="{ active: isActive }">{{ t('room.dashboard') }}</span>
|
|
|
</router-link>
|
|
|
</div>
|
|
@@ -107,7 +107,7 @@ const currentLang = ref({
|
|
|
})
|
|
|
|
|
|
const logoPng = computed(() => getImgSrc(`logo_${unref(currentLang).key}`))
|
|
|
-
|
|
|
+const isInternational = ref(import.meta.env.VITE_IS_INTERNATIONAL)
|
|
|
// const currentLang = computed(() => {
|
|
|
// return {
|
|
|
// key: getLocale,
|