其他分享
首页 > 其他分享> > 75Vue - 使用 v-once 的低级静态组件(Cheap Static Component)

75Vue - 使用 v-once 的低级静态组件(Cheap Static Component)

作者:互联网

尽管在 Vue 中渲染 HTML 很快,不过当组件中包含大量静态内容时,可以考虑使用 v-once将渲染结果缓存起来,就像这样:

Vue.component('terms-of-service', {
  template: '\
    <div v-once>\
      <h1>Terms of Service</h1>\
      ... a lot of static content ...\
    </div>\
  '
})

标签:...,Vue,渲染,静态,Component,Cheap,Static,组件,once
来源: https://blog.csdn.net/qq_20042935/article/details/97631841