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

export default {
  path: '/setting/contract/detail',
  matchPath: '/setting/contract/detail/:key?',
  key: 'setting-contract-detail',
  title: '合同详情',
  needLogin: true,
  module,
  group,
  showKey: 'setting-contract',
  component() {
    return import('./page');
  },
};