Files
firefly-iii/resources/assets/js/components/transactions/CustomString.vue

43 lines
1.1 KiB
Vue
Raw Normal View History

<template>
2019-05-24 05:29:04 +02:00
<div class="form-group"
v-bind:class="{ 'has-error': hasError()}"
>
<div class="col-sm-12 text-sm">
{{ title }}
</div>
<div class="col-sm-12">
<input type="text" class="form-control" :name="name"
:title="title" autocomplete="off"
ref="str"
:value="value" @input="handleInput"
:placeholder="title">
2019-05-24 05:29:04 +02:00
<ul class="list-unstyled" v-for="error in this.error">
<li class="text-danger">{{ error }}</li>
</ul>
</div>
</div>
</template>
<script>
export default {
name: "CustomString",
props: {
title: String,
name: String,
2019-05-24 05:29:04 +02:00
value: String,
error: Array
},
methods: {
handleInput(e) {
this.$emit('input', this.$refs.str.value);
2019-05-24 05:29:04 +02:00
},
hasError: function () {
return this.error.length > 0;
}
}
}
</script>
<style scoped>
</style>