This commit is contained in:
Jai A
2020-10-02 21:05:43 -07:00
parent d85a063db8
commit f561de200d
6 changed files with 59 additions and 8 deletions

View File

@@ -195,6 +195,7 @@
<script>
export default {
auth: false,
layout: 'none',
data() {
return {

View File

@@ -33,6 +33,12 @@
</div>
</template>
<script>
export default {
auth: false,
}
</script>
<style lang="scss">
#search-pagination {
align-items: center;

View File

@@ -68,7 +68,7 @@
:author-url="result.author_url"
:page-url="result.page_url"
:categories="result.categories"
:is-ad="index % 5"
:is-ad="index === -1"
/>
</div>
<section v-if="pages.length > 1" class="search-bottom">
@@ -418,6 +418,7 @@ const config = {
}
export default {
auth: false,
components: {
SearchResult,
Pagination,