@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
32 lines (31 loc) • 723 B
HTML
<div
class="checkbox"
:class="classes"
:aria-checked="checked ? 'true' : 'false'"
role="checkbox"
>
<input
ref="input"
type="checkbox"
:checked="checked"
tabindex="-1"
:name="name"
:disabled="isDisabled"
:readonly="isReadonly"
:indeterminate.prop="indeterminate"
aria-hidden="true"
@change="onChange"
>
<label
class="checkbox-label"
:aria-checked="checked"
:aria-disabled="isDisabled"
:aria-readonly="isReadonly"
:tabindex="tabIndex"
@blur="onBlur"
@click="clickInputRef"
@keydown.space.stop.prevent="clickInputRef"
>
<slot />
</label>
</div>