闪电龟龟--笔记

万物寻其根,通其堵,便能解其困。
  博客园  :: 新随笔  :: 管理

Vue 渲染集合

Posted on 2020-03-31 15:14  闪电龟龟  阅读(191)  评论(0编辑  收藏  举报

1.出现闪屏(显示源代码)等界面

  出现问题(图片现象如:https://upload-images.jianshu.io/upload_images/3386108-cc0cda1d980b9586.gif?imageMogr2/auto-orient/strip|imageView2/2/w/288):

    大致现象就是:先显示代码后闪出界面

  解决方法:加上v-cloak

 AddBy 2020-11-25

Css中添加

[v-cloak]{
    display:none;
}

EndBy 2020-11-25

 

2.