mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-05 01:12:55 +01:00
d51e5ab65d
- fix: Translation fixes - fix: Various fixes - feat: PB translations, configuration changes - fix: Bugfixes GitOrigin-RevId: 55f8b148c42a296162fc707c36a5146ca0073b4b
30 lines
538 B
Vue
30 lines
538 B
Vue
<template lang="pug">
|
|
ul
|
|
li(v-for='scoredDocument in scoredDocuments')
|
|
search-item(:scored-document='scoredDocument', :key='scoredDocument.document.id')
|
|
</template>
|
|
|
|
<script>
|
|
import SearchItem from '@/components/search-item'
|
|
export default {
|
|
name: 'SearchList',
|
|
components: { SearchItem },
|
|
props: {
|
|
scoredDocuments: {
|
|
type: Array,
|
|
required: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
li {
|
|
padding-bottom: 15px;
|
|
padding-left: 0;
|
|
&:after {
|
|
content: none;
|
|
}
|
|
}
|
|
</style>
|