diff --git a/packages/anu-vue/src/components/checkbox/ACheckbox.vue b/packages/anu-vue/src/components/checkbox/ACheckbox.vue index 84e1448f..9145c217 100644 --- a/packages/anu-vue/src/components/checkbox/ACheckbox.vue +++ b/packages/anu-vue/src/components/checkbox/ACheckbox.vue @@ -25,6 +25,11 @@ const props = defineProps({ */ icon: defu({ default: 'i-bx-check' }, configurableProp), + /** + * Bind classes to input element + */ + inputClasses: { type: null }, + /** * Disable checkbox */ @@ -42,6 +47,7 @@ const emit = defineEmits<{ defineOptions({ name: 'ACheckbox', + inheritAttrs: false, }) const attrs = useAttrs() @@ -75,15 +81,18 @@ const state = computed(() => {