egirlskey/packages/frontend/src/pages/tag.vue

36 lines
772 B
Vue
Raw Normal View History

<template>
2022-07-24 06:41:06 +00:00
<MkStickyContainer>
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
<MkSpacer :content-max="800">
<MkNotes class="" :pagination="pagination"/>
2022-07-24 06:41:06 +00:00
</MkSpacer>
</MkStickyContainer>
</template>
<script lang="ts" setup>
import { computed } from 'vue';
import MkNotes from '@/components/MkNotes.vue';
import { definePageMetadata } from '@/scripts/page-metadata';
const props = defineProps<{
tag: string;
}>();
const pagination = {
2022-01-12 17:26:10 +00:00
endpoint: 'notes/search-by-tag' as const,
limit: 10,
params: computed(() => ({
tag: props.tag,
})),
};
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata(computed(() => ({
title: props.tag,
icon: 'ti ti-hash',
})));
</script>