1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-05 03:04:59 +08:00

perf[permission.js]: remove useless code (#3301)

This commit is contained in:
dyz 2020-07-05 13:12:46 +08:00 committed by GitHub
parent fe22b3cd94
commit ea60478304
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,11 +13,7 @@ export default function checkPermission(value) {
const hasPermission = roles.some(role => {
return permissionRoles.includes(role)
})
if (!hasPermission) {
return false
}
return true
return hasPermission
} else {
console.error(`need roles! Like v-permission="['admin','editor']"`)
return false