Files
front-pc/components/seo-head/index.vue
2025-09-03 09:08:16 +08:00

26 lines
723 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
const props = defineProps({
title: {
type: String,
required: true,
default: '图夕夕-世界图纸 夕夕共享',
},
description: {
type: String,
default: '图夕夕是一家图纸素材分享交易平台提供AutoCAD/ProE/Creo/CATIA/UG/inventor/CAXA/等建筑图纸的素材下载及免费教程。',
},
keywords: {
type: String,
default: '图纸,图纸下载,设计素材,图纸大全,设计图纸,,工程图纸,cad图纸',
},
})
useHead({
title: `${props.title}`,
meta: [
{ name: 'description', content: `${props.description}`},
{ name: 'keywords', content: props.keywords },
],
})
</script>