Преглед изворни кода

低版本不支持replaceAll

CzRger пре 1 година
родитељ
комит
e1982a276a
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/router/index.ts

+ 1 - 1
src/router/index.ts

@@ -128,7 +128,7 @@ const setRouters = () => {
                 }
             }
             obj.name = v.menuCode
-            obj.path = '/' + _pA.map(v => v.path.replaceAll('/', '')).join('/')
+            obj.path = '/' + _pA.map(v => v.path.replace('/', '')).join('/')
             if (v.children?.length > 0) {
                 obj.children = deep(v.children, _pA)
                 obj.component = RouterViewCom