帧视界壹通告,付费看视频的微信小程序
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.

31 lines
349 B

11 months ago
  1. <template>
  2. <view>
  3. <tabber :select="2"/>
  4. </view>
  5. </template>
  6. <script>
  7. import tabber from '@/components/base/tabbar.vue'
  8. import { mapState } from 'vuex'
  9. export default {
  10. components : {
  11. tabber
  12. },
  13. computed : {
  14. ...mapState(['count']),
  15. },
  16. data() {
  17. return {
  18. }
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <style>
  25. </style>