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
Vue removes / condenses whitespace in templates to produce more efficient compiled output. The default strategy is "condense", with the following behavior:
442
442
443
-
1. Leading / ending whitespace inside an element are condensed into a single space.
444
-
2. Whitespace between elements that contain newlines are removed.
445
-
3. Consecutive whitespace in text nodes are condensed into a single space.
443
+
1. Leading / ending whitespace inside an element is condensed into a single space.
444
+
2. Whitespace between elements that contain newlines is removed.
445
+
3. Consecutive whitespace in text nodes is condensed into a single space.
446
446
447
447
Setting this option to `'preserve'` will disable (2) and (3).
0 commit comments