feat(user): add user login expiration example

This commit is contained in:
vben
2021-05-25 23:14:05 +08:00
parent d5b768929e
commit 5465f058ce
16 changed files with 149 additions and 30 deletions

View File

@@ -6,9 +6,6 @@ const menu: MenuModule = {
menu: {
name: t('routes.demo.comp.comp'),
path: '/comp',
tag: {
dot: true,
},
children: [
{
path: 'basic',
@@ -191,9 +188,6 @@ const menu: MenuModule = {
{
name: t('routes.demo.editor.editor'),
path: 'editor',
tag: {
dot: true,
},
children: [
{
path: 'json',

View File

@@ -6,7 +6,9 @@ const menu: MenuModule = {
menu: {
name: t('routes.demo.feat.feat'),
path: '/feat',
tag: {
dot: true,
},
children: [
{
path: 'icon',
@@ -16,6 +18,13 @@ const menu: MenuModule = {
path: 'ws',
name: t('routes.demo.feat.ws'),
},
{
name: t('routes.demo.feat.sessionTimeout'),
path: 'session-timeout',
tag: {
content: 'new',
},
},
{
path: 'tabs',
name: t('routes.demo.feat.tabs'),

View File

@@ -6,17 +6,10 @@ const menu: MenuModule = {
menu: {
name: t('routes.demo.flow.name'),
path: '/flow',
tag: {
dot: true,
},
children: [
{
path: 'flowChart',
name: t('routes.demo.flow.flowChart'),
tag: {
content: 'new',
},
},
],
},