All files / src/assets/data header.js

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39                                                                             
// 左侧导航栏
const navMsg = [{
  name: '首页',
  path: '/home'
}, {
  name: '歌单',
  path: '/song-list'
}, {
  name: '歌手',
  path: '/singer'
}, {
  name: '我的音乐',
  path: '/my-music'
}]
 
// 右侧导航栏
const loginMsg = [{
  name: '登录',
  path: '/'
}, {
  name: '注册',
  path: '/login-up'
}]
 
// 用户下拉菜单项
const menuList = [{
  name: '个人信息',
  path: '/info'
}, {
  name: '退出',
  path: 0
}]
 
export {
  navMsg,
  loginMsg,
  menuList
}