thisConditionShouldBeTrueSometimes is a computed property, which just does some checks for some props on the person-object. However, regardless of the return value of this computed property, the tab does not appear.
It exists in the vue-debugger, but is never rendered in the DOM.
I can't disable it, because when the user navigates to another person the modal will open on the disabled tab.
I have a sweet modal with four tabs. One should be hidden unless a specific condition is true, but it isn't appearing in the DOM.
thisConditionShouldBeTrueSometimes
is a computed property, which just does some checks for some props on theperson
-object. However, regardless of the return value of this computed property, the tab does not appear.It exists in the vue-debugger, but is never rendered in the DOM.
I can't
disable
it, because when the user navigates to another person the modal will open on the disabled tab.