例如:

<p class="fl z-tshi">{{city}}</p>
 

在页面加载时会有{{city}}代码一闪而过,影响美观

解决方案:

1.

加上v-cloak

<p class="fl z-tshi" v-cloak>{{city}}</p>
 

并且在公共的css加入:


  1.  
    [v-cloak] {
  2.  
    display: none;
  3.  
    }
 

2.

使用v-text

相关文章:

  • 2022-01-05
  • 2021-06-28
  • 2023-02-11
  • 2022-01-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2023-01-13
  • 2022-12-23
  • 2022-12-23
  • 2021-09-26
  • 2022-01-17
相关资源
相似解决方案