feat(seo): 为页面添加SEO元数据配置

This commit is contained in:
2026-04-26 23:06:41 +08:00
parent 364a21ea18
commit 8b5f6720cd
4 changed files with 16 additions and 0 deletions
+4
View File
@@ -6,4 +6,8 @@
<script setup lang="ts">
// Contact 页面
useSeoMeta({
title: 'Contact',
description: '联系我们页面',
})
</script>
+4
View File
@@ -6,4 +6,8 @@
<script setup lang="ts">
// News 页面
useSeoMeta({
title: 'News',
description: '新闻页面',
})
</script>
+4
View File
@@ -6,4 +6,8 @@
<script setup lang="ts">
// Studio 页面
useSeoMeta({
title: 'Studio',
description: '工作室页面',
})
</script>
+4
View File
@@ -6,4 +6,8 @@
<script setup lang="ts">
// Work 页面
useSeoMeta({
title: 'Work',
description: '作品页面',
})
</script>