With @primevue/icons for icons and primevue for components (except Editor and Chart), multiple items can be imported together.
+
+import { Button, InputText } from 'primevue';
+import { SearchIcon, BellIcon } from '@primevue/icons';
+
+
+ On the other hand, they enable the loading of multiple items from a specific structure as needed, making code management easier.
+
+<script setup>
+import * as PrimeVue from 'primevue';
+
+const items = [
+ { as: 'Button', class: 'my-button-class' },
+ { as: 'InputText', class: 'my-inputtext-class' }
+};
+</script>
+
+<template>
+ <component v-for="item of items" :is="PrimeVue[item.as]" :class="item.class" />
+</template>
+
+
+
diff --git a/apps/showcase/pages/guides/dynamicimports/index.vue b/apps/showcase/pages/guides/dynamicimports/index.vue
new file mode 100644
index 000000000..e75f5cb9b
--- /dev/null
+++ b/apps/showcase/pages/guides/dynamicimports/index.vue
@@ -0,0 +1,34 @@
+
+
+ Dynamic imports enable the loading of multiple items as needed, streamlining the import process.
+