Skip to content

Commit f97f2ad

Browse files
Updating docs
1 parent 3c2e9db commit f97f2ad

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

src/documentation/components/SelectComponent.vue

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
item-value="abbr"
3131
:items="items"
3232
:loading-wait="false"
33+
return-object
3334
:table-field="false"
3435
:variant="variant"
3536
>
@@ -83,17 +84,13 @@ const variant = ref('underlined');
8384
const values = reactive({
8485
boolean: true,
8586
select: {
86-
abbr: 'FL',
87-
state: 'Florida',
87+
abbr: 'CA',
88+
state: 'California',
8889
},
8990
textField: 'Hello World',
9091
});
9192
9293
const items = reactive([
93-
{
94-
abbr: 'FL',
95-
state: 'Florida',
96-
},
9794
{
9895
abbr: 'GA',
9996
state: 'Georgia',

src/documentation/components/TextFieldComponent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
:items="propsStore.vInlineTextFieldProps"
5454
section-id="inline-text-field-props"
5555
section-title="Props"
56-
subtitle="These are all props for the <code class='ic'>VInlineTextField</code> component"
56+
subtitle="These are all props for the <code>VInlineTextField</code> component"
5757
/>
5858
</v-col>
5959
</template>

0 commit comments

Comments
 (0)