ソースを参照

低版本不支持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