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
Inside that wrapper, insert an inline element such as <strong> and leave trailing whitespace at the end of it:
<divid="#app">
This is <strong>BOLD </strong>text
</div>
After the page is parsed with Vue (and Vue has generated a Virtual DOM for the page), the words "BOLD" and "text" will be glued together (the whitespace after the word "BOLD" and before the enclosing tag of <strong> is removed.
What is expected?
It is expected that the whitespace will remain in its place and not trimmed.