There is a div in my page that for show the error message.When I refresh the page,it will appear for a while then it disappear. I added v-cloak but
div
v-cloak
I faced the same issue, and it was due to a conflicting display property on my div. To solve it, I used the !important flag on the [v-cloak] as:
display
!important
[v-cloak]
[v-cloak] { display: none !important; } .my-class { display: table-cell; }