Answer the question
In order to leave comments, you need to log in
How to hide {{ }} until value appears?
Good afternoon. I'm new to this framework, and I'm wondering: how can I remove {{ message }} from displaying on the site before it is processed by the script? That is, while Vue is being created, the user sees these curly braces (not for long, but still). I don't see it on these sites. Thank you!
Answer the question
In order to leave comments, you need to log in
vue has the v-cloak attribute , add it to the application block
<div v-cloak>
{{ message }}
</div>
[v-cloak] {
display: none;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question