iceshrimp-legacy/packages/client/src/pages/search.vue
2021-12-25 13:38:53 +09:00

43 lines
773 B
Vue

<template>
<div class="_section">
<div class="_content">
<XNotes ref="notes" :pagination="pagination"/>
</div>
</div>
</template>
<script lang="ts">
import { computed, defineComponent } from 'vue';
import XNotes from '@/components/notes.vue';
import * as symbols from '@/symbols';
export default defineComponent({
components: {
XNotes
},
data() {
return {
[symbols.PAGE_INFO]: {
title: computed(() => this.$t('searchWith', { q: this.$route.query.q })),
icon: 'fas fa-search',
},
pagination: {
endpoint: 'notes/search',
limit: 10,
params: () => ({
query: this.$route.query.q,
channelId: this.$route.query.channel,
})
},
};
},
watch: {
$route() {
(this.$refs.notes as any).reload();
}
},
});
</script>