VUE在页面没加载完的时候会显示双大括号{ {}}的处理方法

<div v-cloak>
   {
  { message }}
</div>

可以加上CSS

[v-cloak] {
   display: none;
}