Skip to content

Commit

Permalink
chore: sort props alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
KabinKhandThakuri committed Jan 7, 2025
1 parent a91414f commit 390939d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/vue-form/src/components/CheckboxInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ import type { InputOption } from "../types";
import type { PropType } from "vue";
const props = defineProps({
checked: {
default: false,
type: Boolean,
},
direction: {
default: undefined,
type: String,
Expand All @@ -64,15 +68,15 @@ const props = defineProps({
default: false,
type: Boolean,
},
inputLabel: {
default: undefined,
type: String as PropType<string>,
},
label: {
default: "",
required: false,
type: String as PropType<string>,
},
checked: {
default: false,
type: Boolean,
},
modelValue: {
default: () => [] as string[] | number[],
type: Array as PropType<string[] | number[]>,
Expand All @@ -86,10 +90,6 @@ const props = defineProps({
default: () => [] as string[] | number[],
type: Array as PropType<InputOption[]>,
},
inputLabel: {
default: undefined,
type: String as PropType<string>,
},
schema: {
default: () => {
return {};
Expand Down

0 comments on commit 390939d

Please sign in to comment.