mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
25 lines
438 B
Vue
25 lines
438 B
Vue
<template>
|
|
<search-results :search="search" />
|
|
</template>
|
|
|
|
<script>
|
|
import SearchResults from '~/components/_new/features/SearchResults/SearchResults'
|
|
|
|
export default {
|
|
layout: 'default',
|
|
watchQuery: ['search'],
|
|
head() {
|
|
return {
|
|
title: this.$t('search.title'),
|
|
}
|
|
},
|
|
components: {
|
|
SearchResults,
|
|
},
|
|
asyncData(context) {
|
|
const { search = null } = context.query
|
|
return { search }
|
|
},
|
|
}
|
|
</script>
|