mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
Add ibasic home page list
This commit is contained in:
parent
36ec23daa9
commit
7f95c013bf
2 changed files with 15 additions and 6 deletions
|
|
@ -97,10 +97,13 @@
|
|||
</div>
|
||||
|
||||
<div
|
||||
v-html="makeHighlightedResultTitle( listing.storkResult )"
|
||||
v-html="listing.name"
|
||||
/>
|
||||
|
||||
<div class="text-xs leading-5 font-light">
|
||||
<div
|
||||
v-if="listing.storkResult"
|
||||
class="text-xs leading-5 font-light"
|
||||
>
|
||||
<div
|
||||
v-for="(excerpt, i) in listing.storkResult.excerpts"
|
||||
:key="`excerpt-${i}`"
|
||||
|
|
@ -238,8 +241,8 @@ export default {
|
|||
RelativeTime: () => process.client ? import('~/components/relative-time.vue') : null
|
||||
},
|
||||
props: {
|
||||
appList: {
|
||||
type: Array,
|
||||
kindPage: {
|
||||
type: Object,
|
||||
required: true
|
||||
},
|
||||
noEmailSubscribe: {
|
||||
|
|
@ -267,6 +270,9 @@ export default {
|
|||
}
|
||||
},
|
||||
computed: {
|
||||
appList () {
|
||||
return this.kindPage.items
|
||||
},
|
||||
initialList () {
|
||||
return this.initialLimit !== null ? this.appList.slice(0, this.initialLimit) : this.appList
|
||||
},
|
||||
|
|
@ -452,7 +458,7 @@ export default {
|
|||
|
||||
this.listingsResults = storkQuery.results.map( result => {
|
||||
return {
|
||||
name: result.entry.title,
|
||||
name: makeHighlightedResultTitle( result ),
|
||||
endpoint: result.entry.url,
|
||||
slug: '',
|
||||
category: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue