v-cloak does not work in vue.js?

前端 未结 6 1559
半阙折子戏
半阙折子戏 2020-12-13 06:24

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

6条回答
  •  暖寄归人
    2020-12-13 06:40

    I fixed this problem by rewrite the css

    add a class in css file:

    [v-cloak] .v-cloak--hidden{
      display: none;
    }
    

    then the html:

提交回复
热议问题