Skip to content

Instantly share code, notes, and snippets.

@andreipfeiffer
Last active January 29, 2017 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreipfeiffer/41b77745c2558da32dbc94bba71b78dd to your computer and use it in GitHub Desktop.
Save andreipfeiffer/41b77745c2558da32dbc94bba71b78dd to your computer and use it in GitHub Desktop.
// JSX: using {" "} to add whitespace
<div>
<b>1</b>
{" "}
<b>2</b>
</div>
// Vue renders as expected
<div>
<b>1</b>
<b>2</b>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment