Hanye官网
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

content.config.ts 359B

123456789101112131415161718
  1. import { defineCollection, z } from '@nuxt/content'
  2. // 定义 FAQ 集合
  3. const faqCollection = defineCollection({
  4. type: 'page',
  5. schema: z.object({
  6. title: z.string(),
  7. description: z.string().optional(),
  8. id: z.number(),
  9. category: z.string(),
  10. question: z.string(),
  11. answer: z.string()
  12. })
  13. })
  14. export default {
  15. faq: faqCollection
  16. }