vue項目中加載慢的時顯示{{}}

/*css樣式*/

[v-cloak] {display: none;}

 

<!--html代碼-->

<div id="app" v-cloak><ul><li v-for="item in tabs">{{item.text}}</li></ul></div>


//js代碼
new Vue({
      el: '#app',
      data: {
        tabs: [{
            text: '大巴'
          },
          {
            text: '出租車'
          },
          {
            text: '轎車'
          },
          {
            text: '快車'
          }
        ]
      }

})

 

 

發佈了11 篇原創文章 · 獲贊 1 · 訪問量 831
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章