mission.vue 441 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view class="mission-page">
  3. <!-- 任务列表 -->
  4. <mission-list />
  5. </view>
  6. </template>
  7. <script>
  8. // 任务
  9. import missionList from './components/mission-list/mission-list.vue'
  10. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. methods: {
  16. },
  17. components: {
  18. missionList
  19. }
  20. }
  21. </script>
  22. <style lang="less">
  23. .mission-page {
  24. height: 100%;
  25. background-color: #F5F6FA;
  26. overflow: hidden;
  27. }
  28. </style>