特易招,招聘小程序
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.

33 lines
351 B

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