forked from mns/mini-skamja
21 lines
547 B
Vue
21 lines
547 B
Vue
<script setup lang="ts">
|
|
const config = useRuntimeConfig()
|
|
const imgBase = config.public.imgBase
|
|
|
|
import { marked } from 'marked';
|
|
|
|
import og_img from '/og_img.png'
|
|
|
|
// const { data: seoData } = await apiFetch<ApiKpType>(`kp/1/`)
|
|
// useSeoMeta({
|
|
// title: seoData.value?.title,
|
|
// ogTitle: seoData.value?.title,
|
|
// description: seoData.value?.content,
|
|
// ogDescription: seoData.value?.content,
|
|
// ogImage: config.public.baseUrl + og_img,
|
|
// // twitterCard: 'summary_large_image',
|
|
// })
|
|
</script>
|
|
<template>
|
|
1234
|
|
</template> |