feat(icon-picker): add icon-picker component

This commit is contained in:
Vben
2021-03-01 23:11:12 +08:00
parent b476e1c84c
commit b6cea4a950
19 changed files with 2724 additions and 38 deletions

View File

@@ -6,9 +6,7 @@ const menu: MenuModule = {
menu: {
name: t('routes.demo.comp.comp'),
path: '/comp',
tag: {
dot: true,
},
children: [
{
path: 'basic',
@@ -52,9 +50,7 @@ const menu: MenuModule = {
{
path: 'table',
name: t('routes.demo.table.table'),
tag: {
dot: true,
},
children: [
{
path: 'basic',
@@ -111,16 +107,10 @@ const menu: MenuModule = {
{
path: 'editCellTable',
name: t('routes.demo.table.editCellTable'),
tag: {
dot: true,
},
},
{
path: 'editRowTable',
name: t('routes.demo.table.editRowTable'),
tag: {
dot: true,
},
},
],
},

View File

@@ -14,6 +14,9 @@ const menu: MenuModule = {
{
path: 'icon',
name: t('routes.demo.feat.icon'),
tag: {
content: 'new',
},
},
{
path: 'tabs',
@@ -51,9 +54,6 @@ const menu: MenuModule = {
{
path: 'ripple',
name: t('routes.demo.feat.ripple'),
tag: {
content: 'new',
},
},
{
path: 'full-screen',
@@ -89,9 +89,7 @@ const menu: MenuModule = {
{
name: t('routes.demo.feat.breadcrumb'),
path: 'breadcrumb',
tag: {
content: 'new',
},
children: [
{
path: 'flat',

View File

@@ -6,20 +6,33 @@ const menu: MenuModule = {
menu: {
name: t('routes.demo.system.moduleName'),
path: '/system',
tag: {
dot: true,
},
children: [
{
path: 'account',
name: t('routes.demo.system.account'),
tag: {
dot: true,
type: 'warn',
},
},
{
path: 'dept',
name: t('routes.demo.system.dept'),
tag: {
content: 'new',
},
},
{
path: 'changePassword',
name: t('routes.demo.system.password'),
tag: {
content: 'new',
},
},
],
},