39 lines
890 B
Vue
39 lines
890 B
Vue
<template>
|
|
<div class="container">
|
|
<h3 class="title is-4 mt-6">Carta de aceptación (en formato .PDF. No se aceptan fotos).</h3>
|
|
|
|
<b-field>
|
|
<b-upload v-model="file" drag-drop type="is-black" expanded accept="application/pdf">
|
|
<section class="section">
|
|
<div class="content has-text-centered">
|
|
<p>
|
|
<b-icon icon="upload" size="is-large"></b-icon>
|
|
</p>
|
|
<p>{{ file.name || "Arrastra aquí tu archivo o da click para buscar"}}</p>
|
|
</div>
|
|
</section>
|
|
</b-upload>
|
|
</b-field>
|
|
|
|
<b-button
|
|
class="border-info my-5"
|
|
type="is-info"
|
|
tag="router-link"
|
|
to="/responsable">Enviar</b-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
file: ''
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|