diff --git a/packages/api-generator/src/locale/en/VTreeview.json b/packages/api-generator/src/locale/en/VTreeview.json index 3025b82f42b..0d1efb4f350 100644 --- a/packages/api-generator/src/locale/en/VTreeview.json +++ b/packages/api-generator/src/locale/en/VTreeview.json @@ -25,7 +25,7 @@ "returnObject": "When `true` will make `v-model`, `active.sync` and `open.sync` return the complete object instead of just the key.", "rounded": "Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `shaped` prop.", "search": "The search model for filtering results.", - "selectable": "Will render a checkbox next to each node allowing them to be selected.", + "selectable": "Will render a checkbox next to each node allowing them to be selected. Additionally, the **[openOnClick](/api/v-treeview/#props-open-on-click)** property will be applied internally.", "selectedColor": "The color of the selection checkbox.", "selectionType": "Controls how the treeview selects nodes. There are two modes available: 'leaf' and 'independent'.", "shaped": "Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `rounded` prop.", diff --git a/packages/docs/src/examples/v-treeview/misc-search-and-filter.vue b/packages/docs/src/examples/v-treeview/misc-search-and-filter.vue index 7333aefc0cf..3e5c3e339be 100644 --- a/packages/docs/src/examples/v-treeview/misc-search-and-filter.vue +++ b/packages/docs/src/examples/v-treeview/misc-search-and-filter.vue @@ -23,10 +23,12 @@ diff --git a/packages/docs/src/examples/v-treeview/prop-selection-type.vue b/packages/docs/src/examples/v-treeview/prop-selection-type.vue index c4d3f4379ae..260f3abc9e3 100644 --- a/packages/docs/src/examples/v-treeview/prop-selection-type.vue +++ b/packages/docs/src/examples/v-treeview/prop-selection-type.vue @@ -2,16 +2,16 @@ @@ -29,7 +29,7 @@ v-for="node in selection" :key="node.id" > - {{ node.name }} + {{ node.title }} diff --git a/packages/docs/src/examples/v-treeview/slot-append-and-label.vue b/packages/docs/src/examples/v-treeview/slot-append-and-label.vue index e52f27851da..bde4d84e37a 100644 --- a/packages/docs/src/examples/v-treeview/slot-append-and-label.vue +++ b/packages/docs/src/examples/v-treeview/slot-append-and-label.vue @@ -1,15 +1,14 @@