编程日志 Vue-element-admin

时间:2022-03-18 21:44:18

新增页面,动态添加路由不成功,

accessedTreeRoutes.push({             path: element.url,             component: Layout,             children: [               {                 path: ‘index‘,                 component: () => import(`@/views${element.component}/index`),                 name: element.name,                 meta: { title: element.name, icon: element.icon, noCache: true }               }             ]           })             router.addRoutes(accessRoutes)   编译会不成功 .eslintrc.js 要改 ‘indent‘: "off",     // ‘indent‘: [2, 2, {     //   ‘SwitchCase‘: 1     // }],     //‘template-curly-spacing‘:  [2, ‘never‘], 动态加载路由搞定。