FreeTube/src/renderer/views/Trending/Trending.vue

28 lines
490 B
Vue
Raw Normal View History

2020-02-16 19:30:00 +01:00
<template>
<div>
<ft-loader
v-if="isLoading"
:fullscreen="true"
/>
<ft-card
v-else
class="card"
>
<h3>{{ $t("Trending") }}</h3>
2020-02-16 19:30:00 +01:00
<ft-element-list
:data="shownResults"
/>
</ft-card>
2020-08-22 22:37:09 +02:00
<ft-icon-button
icon="sync"
class="floatingTopButton"
:size="12"
theme="primary"
@click="getTrendingInfo"
/>
2020-02-16 19:30:00 +01:00
</div>
</template>
<script src="./Trending.js" />
<style scoped src="./Trending.css" />