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
Using v-clamp inside a <p> tag will generate invalid HTML as v-clamp will put a div wrapper around the text.
In NUXT this will lead to hydration problems with SSR rendering even when the plugin is configured to ssr: false.
Why not use another span? Or add an option to choose the wrapper tag?
The text was updated successfully, but these errors were encountered:
@TuringJest not the creator, but thought I'd chime in; there's already built-in functionality for this with a string property called tag. I think that's what you're looking for, right?
@jibsaramnim thanks for commenting. If I remember it correctly that didn't work because v-clamp will still render a div somewhere inside that tag. Unfortunately, if using <p> any <div> that appears somewhere nested will be invalid HTML and break NUXT's hydration.
@TuringJest oh really, that's odd. I just did a quick test on my end by placing a v-clamp inside a <p> and it seems to work without adding any div elements if I specify tag="span", I only see three span child-elements in the DOM. Sorry I can't be of more help :(.
Using
v-clamp
inside a<p>
tag will generate invalid HTML asv-clamp
will put adiv
wrapper around the text.In NUXT this will lead to hydration problems with
SSR
rendering even when the plugin is configured tossr: false
.Why not use another
span
? Or add an option to choose the wrapper tag?The text was updated successfully, but these errors were encountered: