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(VTreeview): lines prop supports boolean type #19668

Merged
merged 1 commit into from May 6, 2024

Conversation

lzl0304
Copy link
Contributor

@lzl0304 lzl0304 commented Apr 23, 2024

Description

fixes #19638

Markup:

<template>
  <v-treeview :items="items" :lines="false" />
</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>

@MajesticPotatoe MajesticPotatoe added T: bug Functionality that does not work as intended/expected C: VTreeview VTreeview labels Apr 30, 2024
@johnleider johnleider added this to the v3.6.x milestone May 6, 2024
@johnleider johnleider merged commit 330baa0 into vuetifyjs:master May 6, 2024
10 checks passed
@lzl0304 lzl0304 deleted the fix-19638 branch May 7, 2024 02:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
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.

[Bug Report][3.5.16] VTreeview lines argument throwing invalid prop when entering false
3 participants