Curly braces issues in router components

I have facing the issue after using the router components, when any elements in attributes/value contains the Curly braces {} then its gives the error, i understood the error logic but any way to use {} in the html, because we will not restrict to customer to insert the {} in the Fields, please advice i don’t want to back on the other framework

Did you try escaping the character with a backslash?

\{ instead of {

See escape characters: String - JavaScript | MDN

This will be not possible to replace { with \ {, due to customer data will be lost, our application is so big and lots of input field, we can’t use this trick. @kerrydp