mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Try loading AdInline in search list by default
This commit is contained in:
parent
c19f8e9ca1
commit
75199e2183
1 changed files with 10 additions and 4 deletions
|
|
@ -45,7 +45,12 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="slot-wrapper">
|
<div class="slot-wrapper">
|
||||||
<slot />
|
<slot name="ad-inline">
|
||||||
|
<AdInline
|
||||||
|
v-if="isSSR === false"
|
||||||
|
v-once
|
||||||
|
/>
|
||||||
|
</slot>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
|
|
@ -329,7 +334,7 @@ import {
|
||||||
makeHighlightedResultTitle
|
makeHighlightedResultTitle
|
||||||
} from '~/helpers/stork/browser.js'
|
} from '~/helpers/stork/browser.js'
|
||||||
|
|
||||||
import Carbon from '~/components/carbon-inline.vue'
|
import AdInline from '~/components/ad-inline.vue'
|
||||||
import LinkButton from '~/components/link-button.vue'
|
import LinkButton from '~/components/link-button.vue'
|
||||||
import RelativeTime from '~/components/relative-time.vue'
|
import RelativeTime from '~/components/relative-time.vue'
|
||||||
import ListSummary from '~/components/list-summary.vue'
|
import ListSummary from '~/components/list-summary.vue'
|
||||||
|
|
@ -339,7 +344,7 @@ let storkClient = null
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
Carbon,
|
AdInline,
|
||||||
ListSummary,
|
ListSummary,
|
||||||
RelativeTime,
|
RelativeTime,
|
||||||
LinkButton,
|
LinkButton,
|
||||||
|
|
@ -377,7 +382,8 @@ export default {
|
||||||
filterQueryList: [],
|
filterQueryList: [],
|
||||||
hasStartedAnyQuery: false,
|
hasStartedAnyQuery: false,
|
||||||
listingsResults: [],
|
listingsResults: [],
|
||||||
waitingForQuery: false
|
waitingForQuery: false,
|
||||||
|
isSSR: import.meta.env.SSR
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue