We need to sanitize html. Eventually on the backend, for now on the frontend using sanitize-html or an equivalent library.
I first thought to do it at vue level, but there is an inherent cost to do it on display. The best place is probably in the vuex store, as a postprocessing step after retrieval of relevant fields.
We need to sanitize html. Eventually on the backend, for now on the frontend using sanitize-html or an equivalent library. I first thought to do it at vue level, but there is an inherent cost to do it on display. The best place is probably in the vuex store, as a postprocessing step after retrieval of relevant fields.