index.vue 697 B

12345678910111213141516171819
  1. <template>
  2. <cwg-page-wrapper class="create-page" :isHeaderFixed="true">
  3. <view class="account-section">
  4. <!-- <AmountWallet /> -->
  5. <AccountList />
  6. <!-- <TransactionCharts /> -->
  7. </view>
  8. </cwg-page-wrapper>
  9. </template>
  10. <script setup lang="ts">
  11. import AmountWallet from './components/AmountWallet.vue';
  12. import AccountList from './components/AccountList.vue';
  13. import TransactionCharts from './components/TransactionCharts.vue';
  14. import ActivitiesSwiper from './components/ActivitiesSwiper.vue';
  15. import Timeline from './components/Timeline.vue';
  16. import { useAccountOptions } from '@/composables/useAccountOptions'
  17. useAccountOptions()
  18. </script>