feat: 添加资产记录和资金、交易账户视图;更新钱包状态管理和路由配置

This commit is contained in:
2026-01-06 16:01:01 +07:00
parent 3d4babea93
commit 9747f300ac
13 changed files with 325 additions and 58 deletions

View File

@@ -0,0 +1,22 @@
<script lang='ts' setup>
import type { ComponentInstance } from "vue";
import { Icon } from "@iconify/vue";
defineProps<{
icon: string;
}>();
const vm = getCurrentInstance()!;
function changeRef(exposed) {
vm.exposed = exposed;
}
defineExpose({} as ComponentInstance<typeof Icon>);
</script>
<template>
<Icon v-bind="{ ...$attrs, icon }" :ref="changeRef" />
</template>
<style lang='css' scoped></style>