Closed OlkaB closed 3 years ago
There is small typo - unnecessary colon before handle's slots 'name' attribute. Instead <slot :name="handle" /> there should be <slot name="handle" />
<slot :name="handle" />
<slot name="handle" />
No, it's correct because the slot name is dynamic and it's inside a loop, such as a slot is assigned to each handle.
There is small typo - unnecessary colon before handle's slots 'name' attribute. Instead
<slot :name="handle" />
there should be<slot name="handle" />