If showMe is changed, the layout will not properly render the changes.
The root cause of this is how the slot items are cached within the component within the created() hook. The slot items are filtered which creates a new array of items. The subsequent rendering passes will not use the changes to VNodes that may have occurred.
There's a huge flaw in the rendering code that prevents updates to nested elements from occurring after the initial render.
For example:
If
showMe
is changed, the layout will not properly render the changes.The root cause of this is how the slot items are cached within the component within the created() hook. The slot items are filtered which creates a new array of items. The subsequent rendering passes will not use the changes to VNodes that may have occurred.