Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(VListItem, VListGroup): detect input interactions #20881

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

J-Sek
Copy link
Contributor

@J-Sek J-Sek commented Jan 18, 2025

Description

fixes #20523

Markup:

<template>
  <v-treeview :items="items" selectable>
    <template #title="{item}">
      <v-text-field placeholder="click or type something with spaces" />
    </template>
  </v-treeview>
</template>

<script>
  export default {
    data: () => ({
      items: [
        {
          id: 1,
          title: 'Applications :',
          children: [
            { id: 2, title: 'Calendar : app' },
            { id: 3, title: 'Chrome : app' },
            { id: 4, title: 'Webstorm : app' },
          ],
        },
      ],
    }),
  }
</script>

@J-Sek J-Sek self-assigned this Jan 18, 2025
@J-Sek J-Sek added T: bug Functionality that does not work as intended/expected C: VTreeview VTreeview C: VListGroup VListGroup C: VListItem VListItem labels Jan 18, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VListGroup VListGroup C: VListItem VListItem C: VTreeview VTreeview T: bug Functionality that does not work as intended/expected
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant