mirror of
https://github.com/Xevion/the-office.git
synced 2026-01-31 06:26:18 -06:00
26 lines
477 B
Vue
26 lines
477 B
Vue
<template>
|
|
<div>
|
|
<ais-hits>
|
|
<template v-slot="{ items }">
|
|
<div>
|
|
<SearchResult v-for="item in items" :key="item.objectID" :item="item" />
|
|
</div>
|
|
</template>
|
|
</ais-hits>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
|
|
import SearchResult from '@/components/features/SearchResult.vue';
|
|
|
|
export default defineComponent({
|
|
name: 'SearchResults',
|
|
|
|
components: {
|
|
SearchResult,
|
|
},
|
|
});
|
|
</script>
|