inicios del FrontEnd

This commit is contained in:
2021-04-21 21:47:04 -05:00
parent 4a7fb24eb2
commit cf9505f26d
196 changed files with 28978 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
<template>
<div class="form-check" :class="[{ disabled: disabled }, inlineClass]">
<label :for="cbId" class="form-check-label">
<input
:id="cbId"
class="form-check-input"
type="checkbox"
:disabled="disabled"
v-model="model"
/>
<span class="form-check-sign"></span>
<slot> <span v-if="inline">&nbsp;</span> </slot>
</label>
</div>
</template>
<script>
export default {
name: 'base-checkbox',
model: {
prop: 'checked'
},
props: {
checked: [Array, Boolean],
disabled: Boolean,
inline: Boolean,
hasError: Boolean
},
data() {
return {
cbId: '',
touched: false
};
},
computed: {
model: {
get() {
return this.checked;
},
set(check) {
if (!this.touched) {
this.touched = true;
}
this.$emit('input', check);
}
},
inlineClass() {
if (this.inline) {
return `form-check-inline`;
}
}
},
mounted() {
this.cbId = Math.random()
.toString(16)
.slice(2);
}
};
</script>