feat: 添加 PrimeQrcode 组件并更新用户信息界面,优化头像背景色

This commit is contained in:
2025-12-25 19:46:19 +07:00
parent 7df2219f77
commit de810baff1
5 changed files with 28 additions and 15 deletions

View File

@@ -1,5 +1,6 @@
<script lang='ts' setup>
import { chevronForwardOutline, copyOutline, qrCodeOutline } from "ionicons/icons";
import PrimeQrcode from "~icons/prime/qrcode";
const userStore = useUserStore();
const { userProfile } = storeToRefs(userStore);
@@ -19,7 +20,8 @@ const { userProfile } = storeToRefs(userStore);
</div>
</div>
<div class="link" @click="$router.push('/onchain-address')">
<ion-icon :icon="qrCodeOutline" class="qr-code" />
<PrimeQrcode class="qr-code" />
<ion-icon :icon="chevronForwardOutline" />
</div>
</div>
</template>