We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f749b2 commit 84e7d5aCopy full SHA for 84e7d5a
index.js
@@ -21,12 +21,12 @@ module.exports = function (content) {
21
preserveWhitespace: false,
22
});
23
24
- const transpileCode = `var render = function (${options.functional ? '_h,_vm' : ''}) { ${compiled.render} };`;
+ const transpileCode = `var render = function (${options.functional ? '_h, _vm' : ''}) { ${compiled.render} };`;
25
26
const transpileOptions = {
27
transforms: {
28
stripWithFunctional: !!options.functional || false,
29
- }
+ },
30
};
31
32
component = `${transpile(transpileCode, transpileOptions)}\n`;
{
0 commit comments