freetube/src/renderer/views/Trending/Trending.vue

21 lines
343 B
Vue
Raw Normal View History

2020-02-16 18:30:00 +00:00
<template>
<div>
<ft-loader
v-if="isLoading"
:fullscreen="true"
/>
<ft-card
v-else
class="card"
>
<h3>{{ $t("Trending") }}</h3>
2020-02-16 18:30:00 +00:00
<ft-element-list
:data="shownResults"
/>
</ft-card>
</div>
</template>
<script src="./Trending.js" />
<style scoped src="./Trending.css" />