瑶都万能墙
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.

35 lines
482 B

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