tj
2025-06-05 bba272999cc546f65781bf3d20245a3f819af67f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const <%= camelCaseName %>Router = {
  route: null,
  name: null,
  title: '<%= title %>',
  type: 'folder',
  icon: 'iconfont icon-demo',
  filePath: 'views/<%= name %>/',
  order: null,
  inNav: true,
  children: [
    {
      title: '舞台页面',
      type: 'view',
      name: '<%= name %>Stage1',
      route: '/<%= name %>/stage1',
      filePath: 'plugin/<%= name %>/view/stage1.vue',
      inNav: true,
      icon: 'iconfont icon-demo',
      right: null,
    },
    {
      title: '舞台页面',
      type: 'view',
      name: '<%= name %>Stage2',
      route: '/<%= name %>/stage2',
      filePath: 'plugin/<%= name %>/view/stage2.vue',
      inNav: true,
      icon: 'iconfont icon-demo',
      right: null,
    },
  ],
}
 
export default <%= camelCaseName %>Router