Skip to content

Commit 08e251e

Browse files
Add returnObject prop info
1 parent e89f469 commit 08e251e

File tree

1 file changed

+6
-30
lines changed

1 file changed

+6
-30
lines changed

src/stores/props.ts

Lines changed: 6 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,6 @@ export const usePropsStore = defineStore('props', () => {
5858
name: 'elevation',
5959
type: 'string | number | undefined',
6060
},
61-
// {
62-
// default: false,
63-
// desc: 'Fixed footer',
64-
// name: 'fixedFooter',
65-
// type: 'boolean',
66-
// },
67-
// {
68-
// default: false,
69-
// desc: 'Fixed header',
70-
// name: 'fixedHeader',
71-
// type: 'boolean',
72-
// },
7361
{
7462
default: undefined,
7563
desc: 'An array of objects that each describe a footer column. The formatting of the objects are the same as the <a href="#props-all-headers"><code class="inline-code">headers</code></a> prop and should be the same (mostly) to create the same columns. To enabled the <code class="inline-code">footers</code> row you will need to set the <a href="#props-all-showfooterrow"><code class="inline-code">showFooterRow</code></a> prop to true. See <a href="#cell-rendering">Cell Rendering</a> for more information about rendering.',
@@ -88,18 +76,6 @@ export const usePropsStore = defineStore('props', () => {
8876
name: 'groupBy',
8977
type: 'VDataTable["$props"]["groupBy"]',
9078
},
91-
// {
92-
// default: undefined,
93-
// desc: 'Hide default footer',
94-
// name: 'hideDefaultFooter',
95-
// type: 'boolean',
96-
// },
97-
// {
98-
// default: undefined,
99-
// desc: 'Hide default header',
100-
// name: 'hideDefaultHeader',
101-
// type: 'boolean',
102-
// },
10379
{
10480
default: false,
10581
desc: 'Internal use only',
@@ -142,12 +118,12 @@ export const usePropsStore = defineStore('props', () => {
142118
name: 'loading',
143119
type: 'VDataTable["$props"]["loading"]',
144120
},
145-
// {
146-
// default: undefined,
147-
// desc: 'tbd',
148-
// name: 'modelValue',
149-
// type: 'unknown[]',
150-
// },
121+
{
122+
default: true,
123+
desc: 'Missing description in Vuetify docs. This prop <u>needs</u> to be set to <code class="inline-code">true</code> for the server table to function properly. Do not set this to <code class="inline-code">false</code>.',
124+
name: 'returnObject',
125+
type: 'boolean | undefined',
126+
},
151127
{
152128
default: undefined,
153129
desc: 'Text input used to filter items',

0 commit comments

Comments
 (0)