update permission.js

some包含返回true,不包含返回false,if判断中直接返回some函数结果,精简代码逻辑
This commit is contained in:
dyz 2020-07-05 08:19:56 +08:00 committed by GitHub
parent fe22b3cd94
commit e85ef78c1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions

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