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
Copy file name to clipboardexpand all lines: packages/vue-template-compiler/README.md
+42-4
Original file line number
Diff line number
Diff line change
@@ -33,12 +33,48 @@ Note the returned function code uses `with` and thus cannot be used in strict mo
33
33
34
34
#### Options
35
35
36
-
It's possible to hook into the compilation process to support custom template features. **However, beware that by injecting custom compile-time modules, your templates will not work with other build tools built on standard built-in modules, e.g `vue-loader` and `vueify`.**
36
+
-`whitespace`
37
+
- Type: `string`
38
+
- Valid values: `'preserve' | 'condense'`
39
+
- Default: `'preserve'`
37
40
38
-
The optional `options` object can contain the following:
41
+
The default value `'preserve'` handles whitespaces as follows:
42
+
43
+
- A whitespace-only text node between element tags is condensed into a single space.
44
+
- All other whitespaces are preserved as-is.
45
+
46
+
If set to `'condense'`:
47
+
48
+
- A whitespace-only text node between element tags is removed if it contains new lines. Otherwise, it is condensed into a single space.
49
+
- Consecutive whitespaces inside a non-whitespace-only text node is condensed into a single space.
50
+
51
+
Using condense mode will result in smaller compiled code size and slightly improved performance. However, it will produce minor visual layout differences compared to plain HTML in certain cases.
52
+
53
+
**This option does not affect the `<pre>` tag.**
54
+
55
+
Example:
56
+
57
+
```html
58
+
<!-- source -->
59
+
<div>
60
+
<span>
61
+
foo
62
+
</span> <span>bar</span>
63
+
</div>
64
+
65
+
<!-- whitespace: 'preserve' -->
66
+
<div> <span>
67
+
foo
68
+
</span> <span>bar</span> </div>
69
+
70
+
<!-- whitespace: 'condense' -->
71
+
<div><span> foo </span> <span>bar</span></div>
72
+
```
39
73
40
74
-`modules`
41
75
76
+
It's possible to hook into the compilation process to support custom template features. **However, beware that by injecting custom compile-time modules, your templates will not work with other build tools built on standard built-in modules, e.g `vue-loader` and `vueify`.**
77
+
42
78
An array of compiler modules. For details on compiler modules, refer to the `ModuleOptions` type in [flow declarations](https://github.com/vuejs/vue/blob/dev/flow/compiler.js#L38-L45) and the [built-in modules](https://github.com/vuejs/vue/tree/dev/src/platforms/web/compiler/modules).
43
79
44
80
-`directives`
@@ -59,9 +95,11 @@ The optional `options` object can contain the following:
59
95
60
96
Refer to the implementation of some [built-in compile-time directives](https://github.com/vuejs/vue/tree/dev/src/platforms/web/compiler/directives).
61
97
62
-
-`preserveWhitespace`
98
+
-`preserveWhitespace`**Deprecated since 2.6**
99
+
- Type: `boolean`
100
+
- Default: `true`
63
101
64
-
Defaults to `true`. This means the compiled render function preserves all whitespace characters between HTML tags. If set to `false`, whitespace between tags will be ignored. This can result in slightly better performance but may affect layout for inline elements.
102
+
By default, the compiled render function preserves all whitespace characters between HTML tags. If set to `false`, whitespace between tags will be ignored. This can result in slightly better performance but may affect layout for inline elements.
0 commit comments