My feeling is that original quotes should be preserved. Why change them? That just leads to crazy errors like this.
Please note the error is subtle; focusGroup is being set to an empty string within double quotes focusGroup(group) : ''.. i.e. element( prop="emptyString=''")
This is being converted using your vue plugin. E.g.
Is being converted to this:
... which is not parseable because it now has triple single quotes. It should be converted to this:
My feeling is that original quotes should be preserved. Why change them? That just leads to crazy errors like this. Please note the error is subtle; focusGroup is being set to an empty string within double quotes
focusGroup(group) : ''
.. i.e.element( prop="emptyString=''")