Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit 7a53a51

Browse files
committed
docs: Update changes
docs: Change VRadio, VRadioGroup value type docs: Change VField reportWhen type docs: Change default of as docs: Update changes
1 parent f587372 commit 7a53a51

File tree

22 files changed

+159
-616
lines changed

22 files changed

+159
-616
lines changed

docs/components/accordion/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ import Snippet from "./Snippet.vue";
8888
`as`
8989

9090
: - 유형: [`ComponentAs`](/api/types/component-as/)
91-
- 기본값: `"button"`
91+
- 기본값: [`VButton`](/components/button/)
9292

9393
[`<button>` 요소](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button)처럼 클릭 가능한 요소로 설정해야 합니다.
9494

docs/components/dropdown/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ import Snippet from "./Snippet.vue";
5656
`as`
5757

5858
: - 유형: [`ComponentAs`](/api/types/component-as/)
59-
- 기본값: `"button"`
59+
- 기본값: [`VButton`](/components/button/)
6060

6161
[`<button>` 요소](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button)처럼 클릭 가능한 요소로 설정해야 합니다.
6262

docs/components/field/Snippet.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function handleSubmit() {
4545
<VFieldError class="error" />
4646
</div>
4747
</VField>
48-
<VField report-when="change submit">
48+
<VField :report-when="['change', 'submit']">
4949
<div class="field">
5050
<VFieldLabel class="label">비밀번호</VFieldLabel>
5151
<VFieldDescription class="description">

docs/components/field/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import Snippet from "./Snippet.vue";
3535

3636
`reportWhen`
3737

38-
: - 유형: `"none"` 또는 공백으로 구분된 문자열
38+
: - 유형: `"none" | "blur" | "change" | "submit" | ("blur" | "change" | "submit")[]`
3939
- 기본값: `"submit"`
4040

4141
오류를 사용자에게 보고할 시점을 설정합니다. 사용할 수 있는 값은 다음과 같습니다.

docs/components/popover/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@
3838
`as`
3939

4040
: - 유형: [`ComponentAs`](/api/types/component-as/)
41-
- 기본값: `"button"`
41+
- 기본값: [`VButton`](/components/button/)
4242

4343
## `<VPopoverContent>`

docs/components/radio-group/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818

1919
`as`
2020

21-
: - 유형: `string`
21+
: - 유형: [`ComponentAs`](/api/types/component-as/)
2222
- 기본값: `"fieldset"`
2323

2424
[`<fieldset>` 요소](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset)요소로 렌더링되어야 합니다.
2525

2626
`modelValue`
2727

28-
: - 유형: `string`
28+
: - 유형: `string | number | bigint | boolean | null | undefined`
2929

3030
## `<VRadioGroupTitle>`
3131

docs/components/radio/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
`modelValue`
1010

11-
: - 유형: `string`
11+
: - 유형: `string | number | bigint | boolean | null | undefined`
1212

1313
`name`
1414

1515
: - 유형: `string`
1616

1717
`value` (필수)
1818

19-
: - 유형: `string`
19+
: - 유형: `string | number | bigint | boolean | null | undefined`

docs/components/roving-tabindex/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ import Snippet from "./Snippet.vue";
9191
`as`
9292

9393
: - 유형: [`ComponentAs`](/api/types/component-as/)
94-
- 기본값: `"button"`
94+
- 기본값: [`VButton`](/components/button/)
9595

9696
[`<button>` 요소](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button)처럼 클릭 가능한 요소로 설정해야 합니다.
9797

docs/components/tabs/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@
6060
`as`
6161

6262
: - 유형: [`ComponentAs`](/api/types/component-as/)
63-
- 기본값: `"div"`
63+
- 기본값: [`VButton`](/components/button/)
64+
65+
[`<button>` 요소](https://developer.mozilla.org/en/docs/Web/HTML/Element/button)처럼 클릭 가능한 요소로 설정해야 합니다.
6466

6567
`value` (필수)
6668

docs/components/tooltip/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
`as`
5555

5656
: - 유형: [`ComponentAs`](/api/types/component-as/)
57-
- 기본값: `"button"`
57+
- 기본값: [`VButton`](/components/button/)
5858

5959
## `<VTooltipContent>`
6060

0 commit comments

Comments
 (0)