From 5b4b0bd9ad2ecde8b9f9c5b99cc38ad8641cabf5 Mon Sep 17 00:00:00 2001 From: zclzone Date: Mon, 4 Aug 2025 09:39:13 +0800 Subject: [PATCH] fix: lint fix --- src/store/modules/permission.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/modules/permission.js b/src/store/modules/permission.js index 61242ec..6440da9 100644 --- a/src/store/modules/permission.js +++ b/src/store/modules/permission.js @@ -28,7 +28,7 @@ export const usePermissionStore = defineStore('permission', { getMenuItem(item, parent) { const route = this.generateRoute(item, item.show ? null : parent?.key) if (item.enable && route.path && !route.path.startsWith('http')) - this.accessRoutes.push(route) + this.accessRoutes.push(route) const menuItem = { label: route.meta.title, key: route.name,