Hangar/frontend/components/sponsor.vue

26 lines
489 B
Vue
Raw Normal View History

<template>
<v-card>
2021-01-23 05:06:44 +08:00
<v-card-subtitle v-text="$t('hangar.sponsoredBy')"></v-card-subtitle>
</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 {
// TODO get sponsor from server, randomly
sponsor: Sponsor = {
img: '',
title: '',
link: '',
};
}
</script>