You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/Global/components/FormLoader/Elements/wm-checkbox.vue

22 lines
394 B

<template>
<div>
<v-checkbox
:class="element.width"
:label="element.label"
:hibt="element.hint"
:color="element.color"
:append-icon="element.append_icon"
:prepend-icon="element.prepend_icon"
multiple="true"
></v-checkbox>
</div>
</template>
<script>
export default {
props:{
element:{
type: Object
}
}
}
</script>