Vue-ja <component :is> ju lejon të rendatuese një komponent të vendosur në kohën e ekzekutimit, dhe <KeepAlive> cache-on këto komponente në mënyrë që ato të ruajnë gjendjen kur kalojnë larg dhe përmbrojnë.
Komponentet dinamike me <component :is>
<script setup>
import { ref, shallowRef } from "vue";
import TabHome from "./TabHome.vue";
import TabProfile from "./TabProfile.vue";
const tabs = { home: TabHome, profile: TabProfile };
const current = shallowRef(TabHome); // which component to show
</script>
<template>
<button @click="current = tabs.home">Home</button>
<button @click="current = tabs.profile">Profile</button>
<component :is="current" /> <!-- renders whichever component `current` holds -->
</template>
