diff --git a/playgrounds/nuxt/app/pages/components/description-list.vue b/playgrounds/nuxt/app/pages/components/description-list.vue
index 97940d5c2..83d82ed94 100644
--- a/playgrounds/nuxt/app/pages/components/description-list.vue
+++ b/playgrounds/nuxt/app/pages/components/description-list.vue
@@ -141,6 +141,24 @@ const itemsIcons: DescriptionListItem[] = [
}
]
+const itemsLink: DescriptionListItem[] = [
+ {
+ label: 'Account manager',
+ description: 'Sample owner',
+ to: '/users/owner'
+ },
+ {
+ label: 'External profile',
+ description: 'View on partner portal',
+ to: 'https://example.com',
+ target: '_blank'
+ },
+ {
+ label: 'Created',
+ description: 'Oct 6, 2024 08:37'
+ }
+]
+
const itemsCustom: (DescriptionListItem & { value?: Date | string })[] = [
{
label: 'Amount',
@@ -198,6 +216,17 @@ const itemsCustom: (DescriptionListItem & { value?: Date | string })[] = [
+