keep-alive — cache component. v-once — render once.
keep-alive:
v-once:
1<!-- keep-alive -->2<KeepAlive>3 <component :is="currentTab" />4</KeepAlive>56<!-- v-once -->7<div v-once>{{ expensive() }}</div>
Key: keep-alive for caching, v-once for static.