@whamma well it depends on what you want. Vue will automatically ensure that any html etc is safe by not parsing it. But let's say you allow people to post some sort of text using a html editor like quill. Then you would want to make sure that the html you save in the database, does not contain script tags or similar
@whamma well suppose you have a field called 'first_name`. You would never show this as html. So worst case you output an escaped html string as the name
And alot of sanitation is already happening as you of course validate all inputs
@Sinnbeck In this case, I do not want the first_name field to be escaped. So I don't want to escape when saving it to the database. But I'm worried that if you do that, you'll be vulnerable to security.