index.vue 502 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="content">
  3. 二维码
  4. <view class="tabBarLineHeight"></view>
  5. <view class="tabBarView">
  6. <tab-bar :tabIndex="tabIndex"></tab-bar>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. import tabBar from "../../components/tabBar/tabBar";
  12. export default {
  13. components:{
  14. tabBar
  15. },
  16. data() {
  17. return {
  18. title: 'Hello',
  19. tabIndex:2
  20. }
  21. },
  22. onLoad() {
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style>
  29. @import '/common/css/common.css';
  30. @import './index.rpx.css';
  31. </style>