feat: 添加资产相关组件并更新用户界面

This commit is contained in:
2025-12-14 21:17:34 +07:00
parent f112371efa
commit ba82a05b31
5 changed files with 184 additions and 0 deletions

View File

@@ -1,5 +1,9 @@
<script setup lang="ts">
import { notificationsOutline, scanOutline, settingsOutline } from "ionicons/icons";
import AssetBalance from "./components/asset-balance.vue";
import IssuingAsset from "./components/issuing-asset.vue";
import MyRevenue from "./components/my-revenue.vue";
import PurchaseAsset from "./components/purchase-asset.vue";
import UserInfo from "./components/user-info.vue";
import WalletCard from "./components/wallet-card.vue";
</script>
@@ -24,6 +28,10 @@ import WalletCard from "./components/wallet-card.vue";
<IonContent :fullscreen="true" class="ion-padding">
<UserInfo />
<WalletCard />
<IssuingAsset />
<PurchaseAsset />
<AssetBalance />
<MyRevenue />
</IonContent>
</IonPage>
</template>