feat: 更新文本

This commit is contained in:
alger
2025-08-07 23:05:33 +08:00
parent 1597fbf108
commit 283a123590
6 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -41,9 +41,9 @@
<div class="mt-4">
<p
class="text-sm text-gray-700 dark:text-gray-200 text-center cursor-pointer hover:text-green-500"
@click="copyQQ"
@click="copyText"
>
{{ t('comp.coffee.qqGroup') }}
{{ t('comp.coffee.groupText') }}
</p>
</div>
<div class="mt-4">
@@ -70,8 +70,8 @@ import wechat from '@/assets/wechat.png';
const { t } = useI18n();
const message = useMessage();
const copyQQ = () => {
navigator.clipboard.writeText('algermusic');
const copyText = () => {
navigator.clipboard.writeText('AlgerMusic');
message.success(t('common.copySuccess'));
};