Browse Source
perf: correct cloneDeep spelling errors [skip ci] (#4099)
Signed-off-by: aonoa <1991849113@qq.com>
pull/4101/head
aonoa
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
3 additions and
3 deletions
-
packages/@core/base/shared/src/utils/index.ts
-
packages/effects/access/src/accessible.ts
|
|
|
@ -9,4 +9,4 @@ export * from './tree'; |
|
|
|
export * from './unique'; |
|
|
|
export * from './update-css-variables'; |
|
|
|
export * from './window'; |
|
|
|
export { default as cloneDepp } from 'lodash.clonedeep'; |
|
|
|
export { default as cloneDeep } from 'lodash.clonedeep'; |
|
|
|
|
|
|
|
@ -5,7 +5,7 @@ import type { |
|
|
|
} from '@vben/types'; |
|
|
|
|
|
|
|
import { |
|
|
|
cloneDepp, |
|
|
|
cloneDeep, |
|
|
|
generateMenus, |
|
|
|
generateRoutesByBackend, |
|
|
|
generateRoutesByFrontend, |
|
|
|
@ -18,7 +18,7 @@ async function generateAccessible( |
|
|
|
) { |
|
|
|
const { router } = options; |
|
|
|
|
|
|
|
options.routes = cloneDepp(options.routes); |
|
|
|
options.routes = cloneDeep(options.routes); |
|
|
|
// 生成路由
|
|
|
|
const accessibleRoutes = await generateRoutes(mode, options); |
|
|
|
|
|
|
|
|