29 lines
514 B
Vue
29 lines
514 B
Vue
<template>
|
|
<div>
|
|
<ft-loader
|
|
v-if="isLoading"
|
|
:fullscreen="true"
|
|
/>
|
|
<ft-card
|
|
v-else
|
|
class="card"
|
|
>
|
|
<h3>{{ $t("Trending") }}</h3>
|
|
<ft-element-list
|
|
:data="shownResults"
|
|
/>
|
|
</ft-card>
|
|
<ft-icon-button
|
|
v-if="!isLoading"
|
|
icon="sync"
|
|
class="floatingTopButton"
|
|
:size="12"
|
|
theme="primary"
|
|
@click="getTrendingInfo"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script src="./Trending.js" />
|
|
<style scoped src="./Trending.css" />
|