123456789101112131415161718192021 |
- <template>
- <view class="mission-list">
- <list-item />
- </view>
- </template>
- <script>
- // 任务列表
- import listItem from './list-item.vue';
- export default {
- components: {
- listItem
- }
- }
- </script>
- <style lang="less">
- .mission-list {
- height: 100%;
- }
- </style>
|