mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-13 05:07:47 +01:00
43 lines
564 B
Vue
43 lines
564 B
Vue
|
<template lang="pug">
|
||
|
tr(v-if="value")
|
||
|
th {{ label }}
|
||
|
td
|
||
|
a(:href="url" download) {{ value }}
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'VTrLink',
|
||
|
|
||
|
props: {
|
||
|
value: {
|
||
|
default: null,
|
||
|
required: true,
|
||
|
type: String
|
||
|
},
|
||
|
url: {
|
||
|
required: true,
|
||
|
type: String
|
||
|
},
|
||
|
label: {
|
||
|
required: true,
|
||
|
type: String
|
||
|
}
|
||
|
},
|
||
|
data () {
|
||
|
return {
|
||
|
showAll: false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
tr {
|
||
|
word-break: break-all;
|
||
|
}
|
||
|
th {
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
</style>
|