Skip to content

07使用v-once的低级静态组件

使用 v-once 的低级静态组件

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

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

共 20 个模块,1301 篇 Markdown 文档。