Extraido del panel de descarga. Contiene los links de descarga.
This commit is contained in:
parent
2ce8e06be9
commit
3b8b6df07d
71
src/components/Anime/panel-descarga/links.vue
Normal file
71
src/components/Anime/panel-descarga/links.vue
Normal file
@ -0,0 +1,71 @@
|
||||
<template lang="pug">
|
||||
div(:id="`tarjeta${indice}`" :style="indice !== '1'? 'display: none' : ''")
|
||||
div.notf(v-if="enEmision")
|
||||
div.titulo(:style="'color: ' + color") Notificaciones
|
||||
br
|
||||
div.notf--ind(v-if="$store.state.navegador_hash !== '' || true")
|
||||
boton-nuevos-eps(:opcion="opcion.opcion_ID")
|
||||
span Avísame cuando salgan nuevos episodios.
|
||||
template(v-else)
|
||||
span Suscríbete
|
||||
router-link(to="/ajustes" :style="'color: ' + color") aquí
|
||||
span para recibir notificaciones cuando salgan episodios nuevos.
|
||||
br
|
||||
div.titulo(:style="'color: ' + color") Links
|
||||
p Todos los links se abren en una pestaña nueva.<br>
|
||||
span.link(v-for="(ep, num) in opcion.eps")
|
||||
br
|
||||
span Episodio {{ num }} ->
|
||||
a(
|
||||
:href="ep.link" target="_blank" :style="'color: ' + color"
|
||||
@mousedown.stop="incrementarContador(ep.ep_ID, $event)"
|
||||
) {{ ep.peso }}
|
||||
//
|
||||
</template>
|
||||
<!-- TODO: arreglar funcionamiento de los links -->
|
||||
<script lang="coffee">
|
||||
import botonNuevosEps from "./boton-nuevos-eps.vue"
|
||||
|
||||
export default
|
||||
name: "links"
|
||||
components:
|
||||
"boton-nuevos-eps": botonNuevosEps
|
||||
props:
|
||||
indice:
|
||||
type: String
|
||||
required: true
|
||||
opcion:
|
||||
type: Object
|
||||
required: true
|
||||
color:
|
||||
type: String
|
||||
required: true
|
||||
enEmision:
|
||||
type: Boolean
|
||||
default: true
|
||||
#
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped lang="sass">
|
||||
|
||||
|
||||
.notf--ind
|
||||
display: table
|
||||
|
||||
span
|
||||
display: table-cell
|
||||
vertical-align: middle
|
||||
|
||||
.titulo
|
||||
font:
|
||||
family: "Product Sans", Muli, "Open Sans", sans-serif
|
||||
size: xx-large
|
||||
weight: bold
|
||||
|
||||
.link
|
||||
a
|
||||
font-weight: bold
|
||||
|
||||
//
|
||||
</style>
|
Loading…
Reference in New Issue
Block a user