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
An object specifying Webpack loaders to use for language blocks inside `*.vue` files. The key corresponds to the `lang`attribute for language blocks, if specified. The default `lang` for each type is:
Specify custom PostCSS plugins to be applied to CSS inside `*.vue`files. If using a function, the function will called using the same loader context and should return an Array of plugins.
This option can also be an object that contains options to be passed to the PostCSS processor. This is useful when you are using PostCSS projects that relies on custom parser/stringifiers:
Whether to emit esModule compatible code. By default vue-loader will emit default export in commonjs format like `module.exports = ....`. When `esModule` is set to true, default export will be transpiled into `exports.__esModule = true; exports = ...`. Useful for interoperating with transpiler other than Babel, like TypeScript.
100
100
101
101
### preserveWhitespace
102
102
103
-
-type: `Boolean`
104
-
-default: `true`
103
+
-νμ : `Boolean`
104
+
-λν΄νΈ: `true`
105
105
106
-
If set to `false`, the whitespaces between HTML tags in templates will be ignored.
During template compilation, the compiler can transform certain attributes, such as `src`URLs, into `require`calls, so that the target asset can be handled by Webpack. The default config transforms the `src` attribute on `<img>` tags.
The template render functions compilation supports a special transform `stripWith` (enabled by default), which removes the `with`usage in generated render functions to make them strict-mode compliant.
0 commit comments