index.vue 569 B

123456789101112131415161718192021
  1. <template>
  2. <app-view>
  3. <template #header>
  4. <app-navbar :title="$t('quote.spot.subtitle')" />
  5. </template>
  6. <Tabs class="van-tabs--list">
  7. <Tab :title="$t('quote.spot.wantsell')">
  8. <buy />
  9. </Tab>
  10. <Tab :title="$t('quote.spot.wantbuy')">
  11. <sell />
  12. </Tab>
  13. </Tabs>
  14. </app-view>
  15. </template>
  16. <script lang="ts" setup>
  17. import { Tab, Tabs } from 'vant'
  18. import Buy from './components/buy/index.vue'
  19. import Sell from './components/sell/index.vue'
  20. </script>