From 3d87cacdd6949df410f70516f5035403b7206839 Mon Sep 17 00:00:00 2001 From: Antoine Rey Date: Thu, 28 Feb 2019 16:45:25 +0100 Subject: [PATCH] fix(component): Prevent IE from throwing syntax errors (#21) Object method shorthand is not supported in older browser. --- lib/StyleComponent.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/StyleComponent.js b/lib/StyleComponent.js index bb124c2..2d634ac 100644 --- a/lib/StyleComponent.js +++ b/lib/StyleComponent.js @@ -1,7 +1,8 @@ export default { name: 'svg2vue-style', functional: true, - render(h, ctx) { + // eslint-disable-next-line object-shorthand + render: function(h, ctx) { return h('style', ctx.data, ctx.children) } }