Vue 3 removes the white-space between inline-block elements. This means I'll have to go back through quite a few of my sites and update the CSS before I can safely upgrade from version 2. Is there a way to turn this off?
See the following for an example:
<ol>
<li style="display: inline-block"><a href="#">A</a> » </li>
<li style="display: inline-block"><a href="#">B</a></li>
</ol>
https://jsfiddle.net/27vwLn6u/
Here's the same example in Vue 2: