diff --git a/components/new-community-icon.vue b/components/new-community-icon.vue index 41a4f4a..4485655 100644 --- a/components/new-community-icon.vue +++ b/components/new-community-icon.vue @@ -6,10 +6,14 @@ dc - + tg - + youtube @@ -27,6 +31,17 @@ export default { default: 'small', type: String } - } + }, + data() { + return { + tgUrl: 'https://t.me/FoxWallet_EN', + } + }, + mounted() { + const language = navigator.language + if (language === 'zh-CN') { + this.tgUrl = 'https://t.me/FoxWallet_CN' + } + }, }