21 lines
331 B
Vue
21 lines
331 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<ft-loader
|
||
|
v-if="isLoading"
|
||
|
:fullscreen="true"
|
||
|
/>
|
||
|
<ft-card
|
||
|
v-else
|
||
|
class="card"
|
||
|
>
|
||
|
<h3>Trending</h3>
|
||
|
<ft-element-list
|
||
|
:data="shownResults"
|
||
|
/>
|
||
|
</ft-card>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script src="./Trending.js" />
|
||
|
<style scoped src="./Trending.css" />
|