Files
DiceCloud/app/imports/ui/components/global/SmartCheckbox.vue
2021-03-24 16:23:39 +02:00

19 lines
361 B
Vue

<template lang="html">
<v-checkbox
v-bind="$attrs"
:loading="loading"
:error-messages="errors"
:input-value="safeValue"
:disabled="isDisabled"
@change="change"
/>
</template>
<script lang="js">
import SmartInput from '/imports/ui/components/global/SmartInputMixin.js';
export default {
mixins: [SmartInput],
};
</script>