Skip to content

Commit

Permalink
A couple of code style tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
visualfanatic committed Aug 21, 2018
1 parent 0f749b2 commit 84e7d5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ module.exports = function (content) {
preserveWhitespace: false,
});

const transpileCode = `var render = function (${options.functional ? '_h,_vm' : ''}) { ${compiled.render} };`;
const transpileCode = `var render = function (${options.functional ? '_h, _vm' : ''}) { ${compiled.render} };`;

const transpileOptions = {
transforms: {
stripWithFunctional: !!options.functional || false,
}
},
};

component = `${transpile(transpileCode, transpileOptions)}\n`;
Expand Down
Empty file removed {
Empty file.

0 comments on commit 84e7d5a

Please sign in to comment.