Skip to content

Commit

Permalink
Remove unnecessary comma and semicolons from component definition
Browse files Browse the repository at this point in the history
  • Loading branch information
visualfanatic committed Oct 11, 2018
1 parent 151c5d7 commit bfe30f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = (content, options = {}) => {

renderFunction = `
function render(_h, _vm) {
${renderFunction};
${renderFunction}
}
`;

Expand All @@ -46,8 +46,8 @@ module.exports = (content, options = {}) => {
return `
export default {
functional: true,
render: ${renderFunction},
};
render: ${renderFunction}
}
`;
});
};

0 comments on commit bfe30f9

Please sign in to comment.