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

38 lines
452 B

11 months ago
11 months ago
11 months ago
  1. <template>
  2. <view class="content">
  3. <tabber :select="0"/>
  4. </view>
  5. </template>
  6. <script>
  7. import tabber from '@/components/base/tabbar.vue'
  8. export default {
  9. components : {
  10. tabber
  11. },
  12. data() {
  13. return {
  14. }
  15. },
  16. computed : {
  17. locale(){
  18. return this.$t('pages.index.index')
  19. }
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style scoped lang="scss">
  26. .content{
  27. padding: 20px;
  28. button{
  29. margin-bottom: 10rpx;
  30. }
  31. }
  32. </style>