no message

This commit is contained in:
KuroSago 2025-07-10 15:25:17 +08:00
parent 63442cb50e
commit 00d512860d
2 changed files with 12 additions and 1 deletions

View File

@ -28,7 +28,13 @@ function handleExport() {
:action="handleExport"
>
<template #icon>
<iconUrl style="width: 16px; height: 16px" />
<img
v-if="typeof iconUrl === 'string'"
:src="iconUrl"
style="width: 16px; height: 16px"
alt=""
/>
<!-- <iconUrl style="width: 16px; height: 16px" /> -->
</template>
</action-button>
</template>

View File

@ -0,0 +1,5 @@
declare module "*.svg" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any> | string;
export default component;
}