diff --git a/playground/components/FormElementsExample.vue b/playground/components/FormElementsExample.vue index 17fcadac..27a5b569 100644 --- a/playground/components/FormElementsExample.vue +++ b/playground/components/FormElementsExample.vue @@ -63,7 +63,7 @@ function onSubmit(event: FormSubmitEvent) { - + diff --git a/playground/pages/radio-group.vue b/playground/pages/radio-group.vue index e1310798..2c811a1f 100644 --- a/playground/pages/radio-group.vue +++ b/playground/pages/radio-group.vue @@ -8,13 +8,13 @@ const literalOptions = [ 'Option 2', 'Option 3' ] -const options = [ +const items = [ { value: '1', label: 'Option 1' }, { value: '2', label: 'Option 2' }, { value: '3', label: 'Option 3' } ] -const optionsWithDescription = [ +const itemsWithDescription = [ { value: '1', label: 'Option 1', description: 'Description 1' }, { value: '2', label: 'Option 2', description: 'Description 2' }, { value: '3', label: 'Option 3', description: 'Description 3' } @@ -23,38 +23,38 @@ const optionsWithDescription = [