feat: 更新用户界面,添加 Rwa 组件并优化交易视图

This commit is contained in:
2025-12-27 00:49:00 +07:00
parent 96608a769b
commit 6b7a2c7ef1
6 changed files with 67 additions and 34 deletions

View File

@@ -0,0 +1,17 @@
<script lang='ts' setup>
import { client, safeClient } from "@/api";
const { data } = safeClient(client.api.rwa.subscription.available_editions.get({
query: {
limit: 4,
},
}));
</script>
<template>
<div>
{{ data }}
</div>
</template>
<style lang='css' scoped></style>