[Vuejs]-Difference between v-text and v-load in Vue.js when hiding {{ Mustache }}?

6πŸ‘

βœ…

v-text is for setting the entire textNode of an element equal to some value. It’s intended to be used in place of {{}} when you are wanting to affect all of the text content. v-cloak is however meant for hiding an element until compilation is complete.

πŸ‘€qw3n

Leave a comment