index.js 390 B

123456789101112131415161718
  1. module.exports = {
  2. type: 'bottomTab',
  3. async fetch() {
  4. return [
  5. {
  6. title: '首页',
  7. image: $assets('home.svg'),
  8. route: $route('home')
  9. },
  10. {
  11. title: '关注',
  12. image: $assets('follows.svg'),
  13. route: $route('follows')
  14. }
  15. ]
  16. }
  17. }