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/we-select.vue

28 lines
500 B

5 years ago
<template>
<v-card-text>
<v-autocomplete
:label="element.label"
:placeholder="element.placeholder"
:hint="element.hint"
:color="element.color"
:append-icon="element.append_icon"
:prepend-icon="element.prepend_icon"
:multiple="element.multiple"
5 years ago
@input="changeValue"
5 years ago
></v-autocomplete>
</v-card-text>
</template>
<script>
export default {
props: {
element: {
type: Object
}
5 years ago
},
methods: {
changeValue() {
this.$emit('input', this.values);
}
5 years ago
}
};
</script>