index.vue 424 B

123456789101112131415161718
  1. <script setup>
  2. import myInitateFor from './myInitiateFor/index.vue'
  3. import myAttendFor from './myAttendFor/index.vue'
  4. </script>
  5. <template>
  6. <div>
  7. <van-tabs :sticky="true">
  8. <van-tab title="我发起的">
  9. <myInitateFor />
  10. </van-tab>
  11. <van-tab title="我参与的">
  12. <myAttendFor />
  13. </van-tab>
  14. </van-tabs>
  15. </div>
  16. </template>