code refactor

This commit is contained in:
MaysWind
2025-01-11 02:29:44 +08:00
parent ea90e97f92
commit 5649bb243d
6 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -13,7 +13,7 @@
<script setup lang="ts">
import { computed } from 'vue';
import { type CommonIconProps, useItemIcon } from '@/components/base/ItemIcon.ts';
import { type CommonIconProps, useItemIconBase } from '@/components/base/ItemIconBase.ts';
import {
mdiEyeOffOutline
@@ -25,7 +25,7 @@ interface DesktopItemIconProps extends CommonIconProps {
}
const props = defineProps<DesktopItemIconProps>();
const { style, getAccountIcon, getCategoryIcon } = useItemIcon(props);
const { style, getAccountIcon, getCategoryIcon } = useItemIconBase(props);
const icons = {
hide: mdiEyeOffOutline