[Vuejs]-How can I implement Vue 3's built in KeepAlive component to cache a child component of a page so that it only calls it's API on first page load

0👍

maybe use Dynamic components

<keep-alive>
  <component :is="view"></component>
</keep-alive>

Leave a comment