feat: 完善网页版 安装应用功能

This commit is contained in:
alger
2025-01-01 22:42:25 +08:00
parent 8dab799939
commit 38a9d6ed31
4 changed files with 71 additions and 31 deletions
+6 -3
View File
@@ -49,7 +49,8 @@
<script setup>
import { NButton, NImage, NPopover } from 'naive-ui';
import alipay from '@/assets/alipay.png';
import wechat from '@/assets/wechat.png';
const message = useMessage();
const copyQQ = () => {
navigator.clipboard.writeText('789288579');
@@ -59,11 +60,13 @@ const copyQQ = () => {
defineProps({
alipayQR: {
type: String,
required: true
required: true,
default: alipay
},
wechatQR: {
type: String,
required: true
required: true,
default: wechat
}
});
</script>