index.js 413 B

123456789101112131415161718
  1. module.exports = {
  2. type: 'bottomTab',
  3. title: '微博视频号',
  4. async fetch() {
  5. return [
  6. {
  7. title: '首页',
  8. image: $assets("home.svg"),
  9. route: $route("list")
  10. },
  11. {
  12. title: '我的',
  13. image: $assets("mine.svg"),
  14. route: $route("mine")
  15. }
  16. ]
  17. }
  18. }