chat.js 330 B

1234567891011121314151617
  1. const Chat = () => import('views/chat/Chat')
  2. const ChatIndex = () => import('views/chat/ChatIndex')
  3. export default {
  4. path: '/chat',
  5. name: 'Chat',
  6. component: Chat,
  7. meta: { needAuth: true },
  8. children: [
  9. {
  10. path: '',
  11. name: 'ChatIndex',
  12. component: ChatIndex,
  13. meta: { needAuth: true }
  14. }
  15. ]
  16. }