feat: 为各个页面补全标题与SEO
All checks were successful
deploy to server / build-and-deploy (push) Successful in 3m4s

This commit is contained in:
2025-11-07 15:37:18 +08:00
parent 1cdc29b1ce
commit 0265ea4978
16 changed files with 150 additions and 10 deletions

View File

@ -31,6 +31,11 @@
console.error('数据获取失败: ', value);
}
});
const pageTitle = $t('page-title.contact-us');
usePageSeo({
title: pageTitle,
});
</script>
<style scoped>

View File

@ -111,6 +111,11 @@
console.error('数据获取失败: ', value);
}
});
const pageTitle = $t('page-title.documents');
usePageSeo({
title: pageTitle,
});
</script>
<style scoped>

View File

@ -112,6 +112,11 @@
console.error('数据获取失败: ', value);
}
});
const pageTitle = $t('page-title.faq');
usePageSeo({
title: pageTitle,
});
</script>
<style scoped>

View File

@ -52,6 +52,11 @@
iconComponent: ElIconService,
},
];
const pageTitle = $t('page-title.support');
usePageSeo({
title: pageTitle,
});
</script>
<style scoped>