mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 16:53:26 +01:00
43 lines
991 B
Vue
43 lines
991 B
Vue
<template>
|
|
<div class="field">
|
|
<input :id="fieldName" type="checkbox" :name="fieldName" class="is-checkradio is-info" v-model="form[fieldName]" v-on:change="$emit(fieldName, form[fieldName])" v-bind="$attrs">
|
|
<label :for="fieldName" class="label" v-html="label"></label>
|
|
<p class="help" v-html="help" v-if="help"></p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'FormCheckbox',
|
|
inheritAttrs: false,
|
|
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
|
|
props: {
|
|
label: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
|
|
fieldName: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
},
|
|
|
|
form: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
|
|
help: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
}
|
|
}
|
|
</script> |