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

30 lines
357 B

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