Skip to content

Conversation

@J-Sek
Copy link
Contributor

@J-Sek J-Sek commented Oct 16, 2025

Description

resolves #20851

TODO:

  • provide root tag down for useNestedItem to pick it up

Markup:

image
<template>
  <v-app theme="dark">
    <v-card class="mx-auto" max-width="300">
      <v-list :items="items" />
    </v-card>
  </v-app>
</template>

<script setup>
  const items = [
    { title: 'Item #1' },
    { title: 'Item #2' },
    {
      title: 'Item #3',
      children: [
        { title: 'Item #3.1' },
        { title: 'Item #3.2' },
        { title: 'Item #3.3' },
      ],
    },
  ]
</script>

@J-Sek J-Sek self-assigned this Oct 16, 2025
@J-Sek J-Sek added T: feature A new feature C: VList labels Oct 16, 2025
@J-Sek J-Sek added this to the v4.0.0 (Revisionist) milestone Oct 17, 2025
@J-Sek J-Sek marked this pull request as draft November 8, 2025 11:25
@J-Sek J-Sek removed this from the v4.0.0 (Revisionist) milestone Nov 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Feature Request] VList should be <ul> with <li> elements by default instead of <div> | Tag Api

1 participant