2021-01-22 06:24:50 +08:00
|
|
|
<template>
|
|
|
|
<v-card>
|
2021-01-23 05:06:44 +08:00
|
|
|
<v-card-subtitle v-text="$t('hangar.sponsoredBy')"></v-card-subtitle>
|
2021-01-22 06:24:50 +08:00
|
|
|
</v-card>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { Component, Vue } from 'nuxt-property-decorator';
|
|
|
|
|
|
|
|
export interface Sponsor {
|
|
|
|
img: String;
|
|
|
|
title: String;
|
|
|
|
link: String;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component
|
2021-01-24 04:27:15 +08:00
|
|
|
export default class Sponsor extends Vue {
|
2021-01-22 06:24:50 +08:00
|
|
|
// TODO get sponsor from server, randomly
|
|
|
|
sponsor: Sponsor = {
|
|
|
|
img: '',
|
|
|
|
title: '',
|
|
|
|
link: '',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
</script>
|