Reactive Dict with string keys: curly braces not escaped properly #135
Labels
bug
Something isn't working
good first issue
Good for newcomers
help wanted
Extra attention is needed
Heyo!
Not sure whether this is going to be practically relevant (for me it isn't really), but here goes:
If I have a model as follows:
then the browser console throws me an error:
Uncaught SyntaxError: missing : after property id
vartest323.js:5:115]The problem seems to be that the curly braces are not escaped properly somehow (there is no issue with keys not containing special characters):
function initStipple(rootSelector){
Stipple.init({theme: 'stipple-blue'});
window.varTest323 = new Vue({"el":rootSelector,"mixins":[watcherMixin, reviveMixin],"data":{"test":{"a{b} :1},"isready":false,"isprocessing":false}});
} // end of initStipple
(there is a quote missing after a{b})
Here is the full MWE:
The text was updated successfully, but these errors were encountered: