0š
ā
@roy-j, thanks for your comment about sync. I already tried that by setting:
<filter-component v-if="activefilter"
:name="activefilter.name"
:type="activefilter.type"
:title="activefilter.title"
:tooltip="activefilter.tooltip"
:configuration="activefilter.configuration"
:options.sync="activefilter.options">
</filter-component>
This didnāt work. But You got got me thinking, the options sync was not the issue, the sync of the ācheckedā state was the issue.
It worked by changing :checked=āoption.activeā to :checked.sync=āoption.acitveā to the child component: āfilter-option-componentā!
Thanks!!
Source:stackexchange.com