You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this is still an open issue, actually. Looked at the PR that @alfonsobries provided, which is one step to solving the problem, but that only provides a way of overriding one of two possible <span>s.
There's still a hard-coded <span>wrapping the default slot. My guess is this is likely due to use of the v-show directive.
If a v-if directive were used, you could substitute a <template> tag instead, but then it has to be re-rendered every time the display is affected.
I'll try to tinker around a bit, but I don't see any reason why we couldn't also use the <component :is="tagName"> in place of the remaining hard-coded <span> tag.
vue-popper wraps components in span, while this is not always desirable
It's not ok if child elements are div. Div is block element, span is inline, div's can't be inside spans
Maybe make wrapper type configurable?
The text was updated successfully, but these errors were encountered: