Skip to content

Commit

Permalink
feat: added class to label and form component
Browse files Browse the repository at this point in the history
  • Loading branch information
YannicEl committed Aug 1, 2023
1 parent 5390cba commit 6583685
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/lib/src/components/FormGroup.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<label>
<label class="v-label">
<LabelContent />
<Render />
</label>
Expand Down
2 changes: 1 addition & 1 deletion packages/lib/src/components/VForm.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<form @submit.prevent="onSubmit" :class="classNames">
<form @submit.prevent="onSubmit" class="v-form" :class="classNames">
<slot />
</form>
</template>
Expand Down

0 comments on commit 6583685

Please sign in to comment.