Include /threads in sitemap and set canonical paths Generate DiscussionForumPosting structured data for thread details Add dynamic SEO updates for thread navigation and server-side rendering
13 lines
289 B
Vue
13 lines
289 B
Vue
<script setup lang="ts">
|
|
import ThreadsView from '../../src/views/ThreadsView.vue';
|
|
|
|
definePageMeta({
|
|
name: 'threads',
|
|
seo: { titleKey: 'pages.threads.title', descriptionKey: 'seo.threadsDescription', canonicalPath: '/threads' }
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<ThreadsView />
|
|
</template>
|