瑶都万能墙
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
562 B

8 months ago
8 months ago
7 months ago
8 months ago
8 months ago
7 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
7 months ago
8 months ago
7 months ago
8 months ago
  1. <template>
  2. <view class="page">
  3. <navbar/>
  4. <activityList :list="list"/>
  5. <tabber select="1" />
  6. </view>
  7. </template>
  8. <script>
  9. import tabber from '@/components/base/tabbar.vue'
  10. import activityList from '@/components/list/activityList.vue'
  11. import mixinsList from '@/mixins/list.js'
  12. export default {
  13. mixins : [mixinsList],
  14. components : {
  15. tabber,
  16. activityList
  17. },
  18. data() {
  19. return {
  20. list : [
  21. {
  22. title : '这是一条活动',
  23. }
  24. ]
  25. }
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style scoped lang="scss">
  32. </style>