2019-05-12 13:46:20 +02:00
|
|
|
<template>
|
2019-05-24 05:29:04 +02:00
|
|
|
<div class="form-group"
|
|
|
|
v-bind:class="{ 'has-error': hasError()}"
|
|
|
|
>
|
2019-05-12 13:46:20 +02:00
|
|
|
<div class="col-sm-12 text-sm">
|
|
|
|
{{ title }}
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-12">
|
|
|
|
<input multiple="multiple"
|
|
|
|
autocomplete="off"
|
|
|
|
:placeholder="title"
|
|
|
|
:title="title"
|
|
|
|
:name="name" type="file" class="form-control">
|
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>
|
2019-05-12 13:46:20 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: "CustomAttachments",
|
|
|
|
props: {
|
|
|
|
title: String,
|
2019-05-24 05:29:04 +02:00
|
|
|
name: String,
|
|
|
|
error: Array
|
2019-05-12 13:46:20 +02:00
|
|
|
},
|
2019-05-24 05:29:04 +02:00
|
|
|
methods: {
|
|
|
|
hasError: function () {
|
|
|
|
return this.error.length > 0;
|
|
|
|
},
|
|
|
|
}
|
2019-05-12 13:46:20 +02:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|