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