From bd0e9404da5a9afdfda62f1af06f44372d564932 Mon Sep 17 00:00:00 2001 From: pengzhanbo Date: Fri, 9 May 2025 23:13:37 +0800 Subject: [PATCH] fix(theme): simplify icon rendering --- theme/src/client/components/VPIconify.vue | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/theme/src/client/components/VPIconify.vue b/theme/src/client/components/VPIconify.vue index 0f11206c..36c2a1e5 100644 --- a/theme/src/client/components/VPIconify.vue +++ b/theme/src/client/components/VPIconify.vue @@ -48,12 +48,6 @@ const size = computed(() => { return size }) const color = computed(() => props.color || 'currentColor') - -const bind = computed(() => ({ - icon: icon.value, - color: props.color, - height: size.value, -}))