diff --git a/packages/docs/src/examples/v-list/misc-action-stack.vue b/packages/docs/src/examples/v-list/misc-action-stack.vue
index e05be54071f..ecd60b49c7d 100644
--- a/packages/docs/src/examples/v-list/misc-action-stack.vue
+++ b/packages/docs/src/examples/v-list/misc-action-stack.vue
@@ -1,73 +1,33 @@
-
-
-
-
+
+
+
Inbox
-
-
-
- mdi-magnify
-
-
-
- mdi-checkbox-marked-circle
-
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- mdi-star-outline
-
-
-
- mdi-star
-
-
-
-
-
-
+ {{ item.title }}
+ {{ item.headline }}
+ {{ item.subtitle }}
+
+
+ {{ item.action }}
+
+ mdi-star
+ mdi-star-outline
+
-
+
@@ -76,36 +36,11 @@
import { ref } from 'vue'
const items = [
- {
- action: '15 min',
- headline: 'Brunch this weekend?',
- subtitle: `I'll be in your neighborhood doing errands this weekend. Do you want to hang out?`,
- title: 'Ali Connors',
- },
- {
- action: '2 hr',
- headline: 'Summer BBQ',
- subtitle: `Wish I could come, but I'm out of town this weekend.`,
- title: 'me, Scrott, Jennifer',
- },
- {
- action: '6 hr',
- headline: 'Oui oui',
- subtitle: 'Do you have Paris recommendations? Have you ever been?',
- title: 'Sandra Adams',
- },
- {
- action: '12 hr',
- headline: 'Birthday gift',
- subtitle: 'Have any ideas about what we should get Heidi for her birthday?',
- title: 'Trevor Hansen',
- },
- {
- action: '18hr',
- headline: 'Recipe to try',
- subtitle: 'We should eat this: Grate, Squash, Corn, and tomatillo Tacos.',
- title: 'Britta Holt',
- },
+ { id: 1, action: '15 min', headline: 'Brunch this weekend?', subtitle: `I'll be in your neighborhood doing errands this weekend. Do you want to hang out?`, title: 'Ali Connors' },
+ { id: 2, action: '2 hr', headline: 'Summer BBQ', subtitle: `Wish I could come, but I'm out of town this weekend.`, title: 'me, Scrott, Jennifer' },
+ { id: 3, action: '6 hr', headline: 'Oui oui', subtitle: 'Do you have Paris recommendations? Have you ever been?', title: 'Sandra Adams' },
+ { id: 4, action: '12 hr', headline: 'Birthday gift', subtitle: 'Have any ideas about what we should get Heidi for her birthday?', title: 'Trevor Hansen' },
+ { id: 5, action: '18hr', headline: 'Recipe to try', subtitle: 'We should eat this: Grate, Squash, Corn, and tomatillo Tacos.', title: 'Britta Holt' },
]
const selected = ref([2])
@@ -114,39 +49,14 @@
diff --git a/packages/docs/src/pages/en/components/lists.md b/packages/docs/src/pages/en/components/lists.md
index cf36a0ac3fe..e54dfa80ae7 100644
--- a/packages/docs/src/pages/en/components/lists.md
+++ b/packages/docs/src/pages/en/components/lists.md
@@ -133,3 +133,9 @@ Lists can contain subheaders, dividers, and can contain 1 or more lines. The sub
A **three-line** list with actions. Utilizing **selection-strategy**, easily connect actions to your tiles.
+
+#### Action with text
+
+A list can contain additional meta information within an action.
+
+