From 30f22b94dec2b20ef431bb2e2f30d9ab0035ddd3 Mon Sep 17 00:00:00 2001 From: dap <15891557205@163.com> Date: Sat, 7 Sep 2024 20:12:14 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E9=BB=98=E8=AE=A4=E5=A4=B4=E5=83=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/views/_core/profile/profile-panel.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/web-antd/src/views/_core/profile/profile-panel.vue b/apps/web-antd/src/views/_core/profile/profile-panel.vue index b8df9e20..69f46e2b 100644 --- a/apps/web-antd/src/views/_core/profile/profile-panel.vue +++ b/apps/web-antd/src/views/_core/profile/profile-panel.vue @@ -21,7 +21,11 @@ defineEmits<{ uploadFinish: []; }>(); -const avatar = computed(() => props.profile?.user.avatar ?? ''); +const avatar = computed( + () => + props.profile?.user.avatar ?? + 'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png', +);