import module from '../../module';
import group from '../group';

export default {
  path: '/course/study/detail',
  matchPath: '/course/study/detail/:id?',
  key: 'course-study-detail',
  title: '学习记录详情',
  needLogin: true,
  module,
  group,
  showKey: 'course-study',
  component() {
    return import('./page');
  },
};