Hanye官网
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }