mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-12-21 06:51:19 +08:00
e1ea6eb2c5
* formatting * remove imports from 'vue-property-decorator' * only notify of version reviews if its the last open review that is reviewed
24 lines
636 B
Vue
24 lines
636 B
Vue
<template>
|
|
<v-card>
|
|
<v-card-subtitle v-text="$t('hangar.sponsoredBy')"></v-card-subtitle>
|
|
<v-card-text v-if="sponsor">
|
|
<a :href="sponsor.link">
|
|
<v-img :src="sponsor.image" :alt="sponsor.name" :title="sponsor.name" :height="50" contain />
|
|
</a>
|
|
</v-card-text>
|
|
</v-card>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Prop, Vue } from 'nuxt-property-decorator';
|
|
import { Sponsor } from 'hangar-api';
|
|
|
|
@Component
|
|
export default class HangarSponsor extends Vue {
|
|
@Prop({ required: true })
|
|
sponsor!: Sponsor;
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|