config.ts 2.95 KB
Newer Older
hucy's avatar
hucy committed
1 2 3 4 5 6 7 8 9
export const MenuList = [
  {
    title: '主页',
    caption: null,
    icon: require('./menuListIcons/home.svg'),
    link: '/home',
    active: false,
  },
  {
hucy's avatar
hucy committed
10 11
    title: '图表',
    caption: 'chart虚拟滚动',
hucy's avatar
hucy committed
12 13 14 15
    icon: require('./menuListIcons/page1.svg'),
    link: '/page1',
    active: false,
  },
hucy's avatar
hucy committed
16

hucy's avatar
hucy committed
17
  {
hucy's avatar
hucy committed
18
    title: 'canvas',
hucy's avatar
hucy committed
19 20 21 22 23 24
    caption: 'canvas小车动画',
    icon: require('./menuListIcons/page4.svg'),
    link: '/page4',
    active: false,
  },
  {
hucy's avatar
hucy committed
25 26
    title: '动画',
    caption: '',
hucy's avatar
hucy committed
27 28 29 30 31
    icon: require('./menuListIcons/page8.svg'),
    link: '/page8',
    active: false,
  },
  {
hucy's avatar
hucy committed
32
    title: '表格',
hucy's avatar
hucy committed
33 34 35 36 37 38
    caption: '动画2&表格',
    icon: require('./menuListIcons/page9.svg'),
    link: '/page9',
    active: false,
  },
  {
hucy's avatar
hucy committed
39 40
    title: '设计',
    caption: '一言',
hucy's avatar
hucy committed
41 42 43 44
    icon: require('./menuListIcons/page10.svg'),
    link: '/page10',
    active: false,
  },
hucy's avatar
hucy committed
45
  {
hucy's avatar
hucy committed
46
    title: 'Tree',
hucy's avatar
hucy committed
47
    caption: '树',
hucy's avatar
hucy committed
48
    icon: require('./menuListIcons/tree.svg'),
hucy's avatar
hucy committed
49 50 51
    link: '/tree',
    active: false,
  },
hucy's avatar
hucy committed
52 53 54 55 56 57 58
  {
    title: '表单',
    caption: '',
    icon: '',
    active: false,
    children: [
      {
hucy's avatar
hucy committed
59 60
        title: '表单',
        caption: '',
hucy's avatar
hucy committed
61 62 63 64
        icon: require('./menuListIcons/page2.svg'),
        link: '/page2',
        active: false,
      },
hucy's avatar
hucy committed
65 66 67 68 69 70 71
      {
        title: '信息',
        caption: '表单表格测试',
        icon: require('./menuListIcons/form-test.svg'),
        link: '/form-test',
        active: false,
      },
hucy's avatar
hucy committed
72 73
    ],
  },
hucy's avatar
hucy committed
74 75 76 77 78 79 80 81 82 83 84 85 86 87
  {
    title: '学习',
    caption: '杂七杂八',
    icon: '',
    active: false,
    children: [
      {
        title: '链表',
        caption: '看控制台',
        icon: require('./menuListIcons/page3.svg'),
        link: '/js-page3',
        active: false,
      },
      {
hucy's avatar
hucy committed
88
        title: '防抖节流',
hucy's avatar
hucy committed
89 90 91 92 93 94
        caption: '表格&防抖节流',
        icon: require('./menuListIcons/page5.svg'),
        link: '/page5',
        active: false,
      },
      {
hucy's avatar
hucy committed
95
        title: 'JS',
hucy's avatar
hucy committed
96 97 98 99 100 101 102 103 104 105 106 107 108 109
        caption: '一些js练习',
        icon: require('./menuListIcons/page6.png'),
        link: '/js-page6',
        active: false,
      },
    ],
  },
  {
    title: '图表',
    caption: '',
    icon: '',
    active: false,
    children: [
      {
hucy's avatar
hucy committed
110 111
        title: '疫情防控',
        caption: '',
hucy's avatar
hucy committed
112 113 114 115 116 117
        icon: require('./menuListIcons/page7.svg'),
        link: '/page7',
        active: false,
      },
    ],
  },
hucy's avatar
hucy committed
118 119 120 121 122 123 124
  {
    title: 'amis',
    caption: '低代码前端框架',
    icon: require('./menuListIcons/amis.svg'),
    link: '/amis',
    active: false,
  },
hucy's avatar
hucy committed
125 126 127 128 129 130 131
  {
    title: 'Vue Study',
    caption: '',
    icon: require('./menuListIcons/amis.svg'),
    link: '/vue-study',
    active: false,
  },
hucy's avatar
hucy committed
132 133 134 135 136 137 138
  {
    title: 'Vue Konva',
    caption: '前端Canvas库-Konva',
    icon: require('./menuListIcons/amis.svg'),
    link: '/vue-konva',
    active: false,
  },
hucy's avatar
hucy committed
139 140 141 142 143 144 145
  {
    title: '向量',
    caption: 'JavaScript 线性代数:向量',
    icon: require('./menuListIcons/amis.svg'),
    link: '/vector',
    active: false,
  },
hucy's avatar
hucy committed
146
];