hyperboria/nexus/cognitron/web/components/v-tr-link.vue
the-superpirate d51e5ab65d - fix: Various fixes for release
- fix: Translation fixes
- fix: Various fixes
- feat: PB translations, configuration changes
- fix: Bugfixes

GitOrigin-RevId: 55f8b148c42a296162fc707c36a5146ca0073b4b
2021-01-29 11:26:51 +03:00

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>