mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-24 11:05:17 +08:00
feat: remove meaningless parentheses (#2033)
This commit is contained in:
parent
8f519cfbef
commit
24ef604db9
@ -57,7 +57,7 @@ export default defineComponent({
|
||||
})
|
||||
|
||||
const shouldBeRender = computed(() => {
|
||||
return (!props.lazy || loaded.value) || active.value
|
||||
return !props.lazy || loaded.value || active.value
|
||||
})
|
||||
|
||||
const instance = getCurrentInstance()
|
||||
|
Loading…
Reference in New Issue
Block a user