vuetify icon indicating copy to clipboard operation
vuetify copied to clipboard

fix(VTreeview): lines prop supports boolean type

Open lzl0304 opened this issue 1 year ago • 0 comments

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>

lzl0304 avatar Apr 23 '24 08:04 lzl0304