Skip to content

Commit

Permalink
force update
Browse files Browse the repository at this point in the history
  • Loading branch information
yussan committed Sep 6, 2023
1 parent f1233cf commit 36e26ad
Showing 1 changed file with 20 additions and 18 deletions.
38 changes: 20 additions & 18 deletions pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
<template>
<DefaultLayout>
<Head>
<Title>{{ title }}</Title>
</Head>
<TitleMedium :title="'Latest Post'" />
<BoxPosts :data="latestPostResponse" />
<div v-if="latestPostResponse.status === 200" class="row text-center">
<div class="col-12 q-pa-lg">
<q-btn
class="q-pl-md q-pr-md"
size="large"
to="/posts"
label="Semua Post"
outline
color="purple"
/>
<div>
<Head>
<Title>{{ title }}</Title>
</Head>
<TitleMedium :title="'Latest Post'" />
<BoxPosts :data="latestPostResponse" />
<div v-if="latestPostResponse.status === 200" class="row text-center">
<div class="col-12 q-pa-lg">
<q-btn
class="q-pl-md q-pr-md"
size="large"
to="/posts"
label="Semua Post"
outline
color="purple"
/>
</div>
</div>
<!-- <br />
<TitleMedium :title="'Latest Videos'" />
<BoxVideos /> -->
</div>
<br />
<TitleMedium :title="'Latest Videos'" />
<BoxVideos />
</DefaultLayout>
</template>

Expand Down

0 comments on commit 36e26ad

Please sign in to comment.