[{"data":1,"prerenderedAt":17319},["ShallowReactive",2],{"article-96-create-dynamic-blog-with-custom-mdc-components":3},{"id":4,"title":5,"slug":6,"contentMarkdown":7,"coverImage":8,"category":9,"tags":10,"aiSummary":14,"createdAt":15,"updatedAt":16,"_mdcAst":17,"_mdcToc":17301},96,"通过自定义MDC组件打造动态的博客","create-dynamic-blog-with-custom-mdc-components","我一直想打造出动态的博客内容，React生态的MDX的强大有目共睹，那么在Vue生态中有没有什么平替呢？\n\n这就不得不提到 **Nuxt MDC (Markdown Components)** 了。\n\n在这篇文章中，我们将深入探讨如何利用 Nuxt MDC 的自定义组件功能，将枯燥的静态文章转变为充满交互性的动态体验。\n\n---\n\n## 什么是 Nuxt MDC？\n\n**MDC** 代表 **MarkDown Components**。它是 Nuxt 生态中的一个革命性工具（也是 Nuxt Content v2 的核心），允许你在 Markdown 文件中直接书写 Vue 组件。\n\n它的核心理念是：**Markdown 负责内容结构，Vue 组件负责交互和逻辑。**\n\n### 基础语法预览\n在传统的 Markdown 中，你只能写 HTML 标签。但在 MDC 中，你可以这样写：\n\n```markdown\n::alert{type=\"warning\"}\n这是提示内容，支持 **Markdown** 格式\n::\n```\n\n**效果如下**\n\n::alert{type=\"warning\"}\n#title\n提示标题\n#default\n这是提示内容，支持 **Markdown** 格式\n::\n\n\n---\n\n## 第一步：环境搭建\n\n如果你使用的是 Nuxt Content，MDC 已经内置其中。如果你想在普通 Nuxt 项目中使用，可以单独安装：\n\n```bash\nnpx nuxi@latest module add mdc\n```\n\n在 `nuxt.config.ts` 中配置：\n\n```typescript\nexport default defineNuxtConfig({\n  modules: ['@nuxtjs/mdc']\n})\n```\n\n---\n\n## 第二步：打造你的第一个自定义 MDC 组件\n\n要让 Markdown 识别你的组件，默认情况下你需要将 Vue 文件放在 `components/content/`（Nuxt Content 用户）或 `components/mdc/`（独立 MDC 用户）目录下。\n\n### 1. 创建一个星级评分组件\n我的博客使用的NaiveUI，因此可以将NaiveUI的一些特殊组件写成MDC组件，就比如Rating组件。\n\n创建 `components/content/StarRating.vue`:\n\n```vue\n\u003Ctemplate>\n  \u003Cdiv class=\"star-rating-mdc my-4\">\n    \u003Cdiv class=\"star-rating-inner\">\n      \u003Cspan v-if=\"label\" class=\"star-rating-label text-gray-600 dark:text-gray-400\">\n        {{ label }}:\n      \u003C/span>\n\n      \u003Cn-rate\n        :value=\"displayRating\"\n        :count=\"Number(maxStars)\"\n        :size=\"rateSize\"\n        :readonly=\"readonly\"\n        :allow-half=\"true\"\n        color=\"#facc15\"\n        class=\"star-rating-rate\"\n        @update:value=\"handleRateUpdate\"\n      />\n    \u003C/div>\n  \u003C/div>\n\u003C/template>\n\n\u003Cscript setup>\n\nconst props = defineProps({\n  rating: {\n    type: [Number, String],\n    default: 0\n  },\n  maxStars: {\n    type: [Number, String],\n    default: 5\n  },\n  size: {\n    type: String,\n    default: 'medium', // 'small' | 'medium' | 'large'\n    validator: (value) => ['small', 'medium', 'large'].includes(value)\n  },\n  readonly: {\n    type: Boolean,\n    default: true\n  },\n  showScore: {\n    type: Boolean,\n    default: true\n  },\n  label: {\n    type: String,\n    default: ''\n  }\n})\n\nconst emit = defineEmits(['update:rating'])\n\nconst normalizeRating = (rating, maxStars) => {\n  const parsed = Number(rating)\n  const parsedMax = Number(maxStars)\n\n  if (Number.isNaN(parsed)) return 0\n  const max = Number.isNaN(parsedMax) ? 5 : parsedMax\n  const clamped = Math.max(0, Math.min(parsed, max))\n  return Math.round(clamped * 2) / 2\n}\n\nconst currentRating = ref(normalizeRating(props.rating, props.maxStars))\n\nwatch(\n  () => [props.rating, props.maxStars],\n  ([rating, maxStars]) => {\n    currentRating.value = normalizeRating(rating, maxStars)\n  }\n)\n\nconst displayRating = computed(() => normalizeRating(currentRating.value, props.maxStars))\n\nconst handleRateUpdate = (value) => {\n  const nextValue = normalizeRating(value, props.maxStars)\n  currentRating.value = nextValue\n\n  if (!props.readonly) {\n    emit('update:rating', nextValue)\n  }\n}\n\n// 映射 size 到 n-rate 的尺寸\nconst rateSize = computed(() => {\n  const sizeMap = {\n    small: 18,\n    medium: 24,\n    large: 28\n  }\n  return sizeMap[props.size] || 24\n})\n\u003C/script>\n\n\u003Cstyle scoped>\n.star-rating-mdc {\n  display: block;\n}\n\n.star-rating-inner {\n  display: inline-flex;\n  align-items: center;\n  gap: 0.625rem;\n  line-height: 1;\n}\n\n.star-rating-label {\n  display: inline-flex;\n  align-items: center;\n  font-size: 0.95rem;\n  line-height: 1;\n}\n\n.star-rating-score {\n  display: inline-flex;\n  align-items: center;\n  font-size: 0.85rem;\n  line-height: 1;\n}\n\n/* :deep(.star-rating-rate.n-rate) {\n  display: inline-flex;\n  align-items: center;\n  line-height: 1;\n}\n\n:deep(.star-rating-rate .n-rate__item) {\n  display: inline-flex;\n  align-items: center;\n} */\n\u003C/style>\n\n```\n\n\n然后只要在MD文档中写入：\n\n\n\n```markdown\n::star-rating{rating=\"4\" maxStars=\"5\" label=\"推荐指数\" showScore}\n::\n\n```\n\n::star-rating{rating=\"4\" maxStars=\"5\" label=\"推荐指数\" showScore}\n::\n\n\n### 2. 在 Markdown 中使用它\n在你的 `.md` 文件中，你可以使用类似 YAML 的语法传递复杂的 Props：\n\n```markdown\n::info-card{type=\"warning\" icon=\"⚠️\"}\n#title\n注意：这是一个动态博客！\n\n这里的内容会自动填充到默认的插槽中。\n你甚至可以在这里继续写 **Markdown** 语法。\n::\n```\n\n---\n\n## 第三步：进阶——打造“真·动态”博客\n\n简单的 UI 组件只是开始，MDC 真正的威力在于**数据交互**。\n\n### 场景一：嵌入视频\n你可以创建一个 `Video` 组件，通过链接直接在博客中嵌入视频\n\n```markdown\n\n\n::web-embed{url=\"https://www.bilibili.com/video/BV1qM4y1B7Kr\" aspectRatio=\"16/9\"}\n::\n\n\n\n```\n\n::web-embed{url=\"https://www.bilibili.com/video/BV1qM4y1B7Kr\" aspectRatio=\"16/9\"}\n::\n\n\n\n### 场景二：代码实时预览\n通过自定义 `ProsePre` 组件（MDC 对 `\u003Cpre>` 标签的重写），你可以为博客的代码块添加“一键运行”或“复制按钮”功能。\n\n在 `components/content/ProsePre.vue` 中拦截默认的代码渲染，添加你的自定义逻辑。\n\n\n```markdown\n\n\n::code-playground{lang=\"javascript\" title=\"JavaScript 示例\" runnable}\n\nconsole.log('Hello World!')\n\n::\n\n\n```\n::code-playground{lang=\"javascript\" title=\"JavaScript 示例\" runnable}\n\nconsole.log('Hello World!')\n\n::\n\n\n\n### 场景三：异步数据加载\nMDC 组件支持**异步 Setup**。这意味着你可以在组件内部直接调用 API。\n\n```vue\n\u003C!-- components/content/GitHubStats.vue -->\n\u003Cscript setup>\nconst { data: repo } = await useFetch('https://api.github.com/repos/nuxt/nuxt')\n\u003C/script>\n\n\u003Ctemplate>\n  \u003Cdiv class=\"stats\">\n    Nuxt 框架目前有 {{ repo.stargazers_count }} 个 Star！\n  \u003C/div>\n\u003C/template>\n```\n\n\n\n::github-card{repo=\"vuejs/core\"}\n::\n\n\n\n---\n\n## 为什么这种方式是博客的未来？\n\n1.  **写作体验回归**：你依然在写简单的 Markdown，不需要在 `.vue` 文件里处理繁琐的 HTML 结构。\n2.  **高度可定制**：不再受限于标准的 Markdown 渲染器。想要一个复杂的折叠面板？写个组件就行。\n3.  **SEO 友好**：Nuxt MDC 支持服务端渲染（SSR），所有的动态组件内容在爬虫眼中都是结构化的 HTML。\n4.  **内容与样式解耦**：如果你想更换博客主题，只需要修改 `components/content/` 下的 Vue 组件，而数以百计的 `.md` 文章无需任何变动。\n\n## 结语\n\nNuxt MDC 不仅仅是一个解析器，它是一种全新的**内容驱动开发（Content-driven Development）**模式。通过自定义 MDC 组件，你的博客不再是死气沉沉的文字堆砌，而是一个可以与读者互动、实时更新数据的微型应用。\n\n现在，去尝试把你的博客页脚、评论区或者技术演示直接“写”进 Markdown 吧！\n\n## 详细的组件代码\n\n受限于单篇的体量，这里只给出几个比较有意思的。\n\n\n::tabs\n---\nlabels: [\"视频嵌入\", \"Github卡片\", \"Steps组件\"]\n---\n#tab-0\n\n```vue\n\u003Ctemplate>\n  \u003Cdiv class=\"web-embed-mdc my-6\">\n    \u003Cdiv class=\"embed-container rounded-lg overflow-hidden border border-gray-200 dark:border-gray-700\" :style=\"containerStyle\">\n      \u003Cdiv v-if=\"embedHtml\" v-html=\"embedHtml\" class=\"embed-content\" />\n      \n      \u003Ciframe\n        v-else-if=\"finalUrl\"\n        :src=\"finalUrl\"\n        :title=\"title || 'Embedded Content'\"\n        :width=\"width\"\n        :height=\"height\"\n        frameborder=\"0\"\n        :allow=\"allow\"\n        :allowfullscreen=\"allowFullscreen\"\n        class=\"w-full h-full\"\n      />\n      \n      \u003Cdiv v-else class=\"flex items-center justify-center h-full bg-gray-100 dark:bg-gray-800 text-gray-500\">\n        \u003Cdiv class=\"text-center p-8\">\n          \u003CIcon name=\"film\" size=\"3xl\" class=\"mb-3 mx-auto\" />\n          \u003Cp class=\"text-sm\">无效的 URL\u003C/p>\n        \u003C/div>\n      \u003C/div>\n    \u003C/div>\n    \n    \u003Cp v-if=\"caption\" class=\"text-sm text-gray-600 dark:text-gray-400 text-center mt-2\">\n      {{ caption }}\n    \u003C/p>\n  \u003C/div>\n\u003C/template>\n\n\u003Cscript setup>\n/**\n * WebEmbed 网页/视频嵌入组件 - MDC 语法\n * \n * 支持 Bilibili、YouTube、CodePen、CodeSandbox 等\n * \n * 在 Markdown 中使用：\n * ::web-embed{url=\"https://www.bilibili.com/video/BV1xx411c7mD\" aspectRatio=\"16/9\"}\n * ::\n * \n * ::web-embed{platform=\"bilibili\" vid=\"BV1xx411c7mD\"}\n * ::\n * \n * ::web-embed{platform=\"youtube\" vid=\"dQw4w9WgXcQ\"}\n * ::\n */\n\nconst props = defineProps({\n  url: String,\n  platform: String,\n  vid: String,\n  width: {\n    type: String,\n    default: '100%'\n  },\n  height: {\n    type: String,\n    default: '500px'\n  },\n  aspectRatio: {\n    type: String,\n    default: '16/9'\n  },\n  title: String,\n  caption: String,\n  allow: {\n    type: String,\n    default: 'accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture'\n  },\n  allowFullscreen: {\n    type: Boolean,\n    default: true\n  }\n})\n\nconst embedHtml = ref('')\n\nconst containerStyle = computed(() => {\n  if (props.aspectRatio) {\n    return {\n      aspectRatio: props.aspectRatio,\n      width: '100%'\n    }\n  }\n  return {\n    width: props.width,\n    height: props.height\n  }\n})\n\n// 解析不同平台的 URL\nconst finalUrl = computed(() => {\n  // 如果指定了 platform 和 vid\n  if (props.platform && props.vid) {\n    return getPlatformUrl(props.platform, props.vid)\n  }\n  \n  // 如果提供了完整 URL，尝试自动识别\n  if (props.url) {\n    return parseUrl(props.url)\n  }\n  \n  return ''\n})\n\nconst getPlatformUrl = (platform, vid) => {\n  const platforms = {\n    bilibili: (id) => {\n      // 支持 BV 号\n      if (id.startsWith('BV')) {\n        return `https://player.bilibili.com/player.html?bvid=${id}&high_quality=1&danmaku=0&autoplay=0`\n      }\n      // 支持 av 号\n      return `https://player.bilibili.com/player.html?aid=${id}&high_quality=1&danmaku=0&autoplay=0`\n    },\n    youtube: (id) => `https://www.youtube.com/embed/${id}?autoplay=0`,\n    codepen: (id) => `https://codepen.io/${id}/embed`,\n    codesandbox: (id) => `https://codesandbox.io/embed/${id}`,\n    stackblitz: (id) => `https://stackblitz.com/edit/${id}?embed=1`,\n  }\n  \n  const handler = platforms[platform.toLowerCase()]\n  return handler ? handler(vid) : ''\n}\n\nconst parseUrl = (url) => {\n  try {\n    // Bilibili\n    if (url.includes('bilibili.com')) {\n      const bvMatch = url.match(/BV[\\w]+/)\n      if (bvMatch) {\n        return `https://player.bilibili.com/player.html?bvid=${bvMatch[0]}&high_quality=1&danmaku=0&autoplay=0`\n      }\n      const avMatch = url.match(/av(\\d+)/)\n      if (avMatch) {\n        return `https://player.bilibili.com/player.html?aid=${avMatch[1]}&high_quality=1&danmaku=0&autoplay=0`\n      }\n    }\n    \n    // YouTube\n    if (url.includes('youtube.com') || url.includes('youtu.be')) {\n      const videoIdMatch = url.match(/(?:youtube\\.com\\/watch\\?v=|youtu\\.be\\/)([\\w-]+)/)\n      if (videoIdMatch) {\n        return `https://www.youtube.com/embed/${videoIdMatch[1]}?autoplay=0`\n      }\n    }\n    \n    // CodePen\n    if (url.includes('codepen.io')) {\n      return url.replace('/pen/', '/embed/')\n    }\n    \n    // 其他情况直接返回 URL\n    return url\n  } catch (e) {\n    console.error('解析 URL 失败:', e)\n    return ''\n  }\n}\n\u003C/script>\n\n\u003Cstyle scoped>\n.embed-container {\n  position: relative;\n  background: #000;\n}\n\n.embed-content :deep(iframe) {\n  width: 100%;\n  height: 100%;\n}\n\u003C/style>\n\n```\n\n#tab-1\n\n\n\n```vue\n\u003Ctemplate>\n  \u003Cdiv class=\"github-card-mdc my-6\">\n    \u003Cdiv v-if=\"loading\" class=\"loading-skeleton p-4 bg-white dark:bg-gray-900 border border-gray-200 dark:border-gray-700 rounded-lg\">\n      \u003Cdiv class=\"skeleton-line w-3/4 h-6 mb-3 bg-gray-200 dark:bg-gray-700 rounded animate-pulse\">\u003C/div>\n      \u003Cdiv class=\"skeleton-line w-full h-4 mb-2 bg-gray-200 dark:bg-gray-700 rounded animate-pulse\">\u003C/div>\n      \u003Cdiv class=\"skeleton-line w-5/6 h-4 bg-gray-200 dark:bg-gray-700 rounded animate-pulse\">\u003C/div>\n    \u003C/div>\n    \n    \u003Cdiv v-else-if=\"repoData\" class=\"github-card p-4 bg-white dark:bg-gradient-to-br dark:from-gray-900 dark:via-gray-900 dark:to-gray-800 border border-gray-200 dark:border-gray-700 rounded-lg transition-all duration-200 hover:-translate-y-0.5 relative overflow-hidden\">\n      \u003C!-- 装饰性光晕效果 -->\n      \u003Cdiv class=\"absolute inset-0 bg-gradient-to-br from-blue-50/60 via-transparent to-transparent dark:from-sky-500/10 dark:via-transparent dark:to-transparent pointer-events-none\">\u003C/div>\n      \n      \u003C!-- 内容区域 -->\n      \u003Cdiv class=\"relative z-10\">\n        \u003C!-- 仓库名称和描述 -->\n        \u003Cdiv class=\"repo-header mb-4\">\n          \u003Ca :href=\"repoData.html_url\" target=\"_blank\" rel=\"noopener\" class=\"repo-name text-lg font-semibold text-blue-600 hover:text-blue-700 dark:text-sky-300 dark:hover:text-sky-200 transition-colors inline-flex items-center no-underline hover:underline\">\n            \u003CIcon name=\"mdi:github\" class=\"inline-block mr-2\" />\n            {{ repoData.full_name }}\n          \u003C/a>\n          \u003Cp v-if=\"repoData.description\" class=\"repo-description mt-2 text-sm text-gray-600 dark:text-gray-400 leading-relaxed\">\n            {{ repoData.description }}\n          \u003C/p>\n        \u003C/div>\n        \n        \u003C!-- 统计信息 -->\n        \u003Cdiv class=\"repo-stats flex gap-4 mb-4 pb-4 border-b border-gray-200 dark:border-gray-700\">\n          \u003Cdiv class=\"stat-item flex items-center gap-1 text-sm text-gray-600 dark:text-gray-400\">\n            \u003CIcon name=\"mdi:star-outline\" class=\"w-4 h-4\" />\n            \u003Cspan>{{ formatNumber(repoData.stargazers_count) }}\u003C/span>\n          \u003C/div>\n          \u003Cdiv class=\"stat-item flex items-center gap-1 text-sm text-gray-600 dark:text-gray-400\">\n            \u003CIcon name=\"mdi:source-fork\" class=\"w-4 h-4\" />\n            \u003Cspan>{{ formatNumber(repoData.forks_count) }}\u003C/span>\n          \u003C/div>\n          \u003Cdiv v-if=\"repoData.open_issues_count\" class=\"stat-item flex items-center gap-1 text-sm text-gray-600 dark:text-gray-400\">\n            \u003CIcon name=\"mdi:alert-circle-outline\" class=\"w-4 h-4\" />\n            \u003Cspan>{{ formatNumber(repoData.open_issues_count) }}\u003C/span>\n          \u003C/div>\n        \u003C/div>\n        \n        \u003C!-- 底部信息 -->\n        \u003Cdiv class=\"repo-footer flex items-center gap-4 flex-wrap text-xs text-gray-600 dark:text-gray-400\">\n          \u003Cdiv v-if=\"repoData.language\" class=\"language flex items-center gap-2\">\n            \u003Cspan class=\"language-dot w-3 h-3 rounded-full\" :style=\"{ backgroundColor: getLanguageColor(repoData.language) }\">\u003C/span>\n            {{ repoData.language }}\n          \u003C/div>\n          \u003Cdiv v-if=\"repoData.license\" class=\"license flex items-center\">\n            \u003CIcon name=\"mdi:scale-balance\" class=\"inline-block mr-1\" />\n            {{ repoData.license.spdx_id }}\n          \u003C/div>\n          \u003Cdiv class=\"updated\">\n            更新于 {{ formatDate(repoData.updated_at) }}\n          \u003C/div>\n        \u003C/div>\n      \u003C/div>\n    \u003C/div>\n    \n    \u003Cdiv v-else-if=\"error\" class=\"error-message p-4 bg-red-50 dark:bg-red-950/30 border border-red-200 dark:border-red-900/50 rounded-lg text-red-600 dark:text-red-400\">\n      \u003CIcon name=\"mdi:alert-circle\" class=\"inline-block mr-2\" />\n      {{ error }}\n    \u003C/div>\n  \u003C/div>\n\u003C/template>\n\n\u003Cscript setup>\n/**\n * GithubCard GitHub 仓库卡片组件 - MDC 语法\n * \n * 在 Markdown 中使用：\n * ::github-card{repo=\"vuejs/core\"}\n * ::\n * \n * ::github-card{repo=\"nuxt/nuxt\"}\n * ::\n */\n\nconst props = defineProps({\n  // GitHub 仓库，格式: owner/repo\n  repo: {\n    type: String,\n    required: true\n  }\n})\n\nconst repoData = ref(null)\nconst loading = ref(true)\nconst error = ref(null)\n\n// 语言颜色映射（GitHub 官方配色）\nconst languageColors = {\n  JavaScript: '#f1e05a',\n  TypeScript: '#3178c6',\n  Python: '#3572A5',\n  Java: '#b07219',\n  Go: '#00ADD8',\n  Rust: '#dea584',\n  Ruby: '#701516',\n  PHP: '#4F5D95',\n  'C++': '#f34b7d',\n  C: '#555555',\n  'C#': '#178600',\n  Swift: '#F05138',\n  Kotlin: '#A97BFF',\n  Dart: '#00B4AB',\n  Vue: '#41b883',\n  HTML: '#e34c26',\n  CSS: '#563d7c',\n  Shell: '#89e051',\n}\n\nconst getLanguageColor = (language) => {\n  return languageColors[language] || '#8b949e'\n}\n\nconst formatNumber = (num) => {\n  if (num >= 1000) {\n    return (num / 1000).toFixed(1) + 'k'\n  }\n  return num.toString()\n}\n\nconst formatDate = (dateString) => {\n  const date = new Date(dateString)\n  const now = new Date()\n  const diffTime = Math.abs(now - date)\n  const diffDays = Math.ceil(diffTime / (1000 * 60 * 60 * 24))\n  \n  if (diffDays === 0) return '今天'\n  if (diffDays === 1) return '昨天'\n  if (diffDays \u003C 30) return `${diffDays} 天前`\n  if (diffDays \u003C 365) return `${Math.floor(diffDays / 30)} 个月前`\n  return `${Math.floor(diffDays / 365)} 年前`\n}\n\n// 获取仓库数据\nconst fetchRepoData = async () => {\n  if (!props.repo) {\n    error.value = '请提供仓库名称'\n    loading.value = false\n    return\n  }\n  \n  try {\n    loading.value = true\n    error.value = null\n    \n    const response = await fetch(`https://api.github.com/repos/${props.repo}`)\n    \n    if (!response.ok) {\n      throw new Error(`GitHub API 错误: ${response.status}`)\n    }\n    \n    repoData.value = await response.json()\n  } catch (e) {\n    error.value = `加载失败: ${e.message}`\n    console.error('GitHub Card Error:', e)\n  } finally {\n    loading.value = false\n  }\n}\n\nonMounted(() => {\n  fetchRepoData()\n})\n\nwatch(() => props.repo, () => {\n  fetchRepoData()\n})\n\u003C/script>\n\n\u003Cstyle scoped>\n.github-card-mdc {\n  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif;\n}\n\n/* 保留装饰性光晕在暗色模式下的增强效果 */\n.dark .github-card:hover {\n  border-color: rgba(56, 189, 248, 0.3);\n}\n\n/* 暗色模式下仓库名称的文字发光效果 */\n.dark .repo-name {\n  text-shadow: 0 0 12px rgba(56, 189, 248, 0.25);\n}\n\n/* 暗色模式下语言点的外光晕 */\n.dark .language-dot {\n  border: 1px solid rgba(148, 163, 184, 0.3);\n}\n\u003C/style>\n\n\n```\n\n\n#tab-2\n\n\n```vue\n\u003Ctemplate>\n  \u003Cdiv class=\"steps-mdc my-6 p-4 bg-gradient-to-br from-gray-50 to-gray-100 dark:from-gray-900 dark:via-gray-900 dark:to-gray-800 rounded-lg border border-gray-200 dark:border-gray-700 relative overflow-hidden\">\n    \u003C!-- 装饰性光晕效果 -->\n    \u003Cdiv class=\"absolute inset-0 bg-gradient-to-br from-blue-50/70 via-transparent to-transparent dark:from-sky-500/15 dark:via-transparent dark:to-transparent pointer-events-none\">\u003C/div>\n    \n    \u003C!-- 内容区域 -->\n    \u003Cdiv class=\"relative z-10\">\n      \u003Cn-steps\n        :current=\"currentStep\"\n        :status=\"status\"\n        :vertical=\"vertical\"\n        :size=\"size\"\n        @update:current=\"onStepChange\"\n      >\n        \u003Cn-step\n          v-for=\"(step, index) in stepsList\"\n          :key=\"index\"\n          :title=\"step.title\"\n          :description=\"step.description\"\n        />\n      \u003C/n-steps>\n      \n      \u003C!-- 控制按钮（可选） -->\n      \u003Cdiv v-if=\"showControls\" class=\"steps-controls flex justify-end gap-3 mt-6 pt-4 border-t border-gray-200 dark:border-gray-700\" :class=\"{ 'justify-center': vertical }\">\n        \u003Cn-button\n          :disabled=\"currentStep \u003C= 1\"\n          @click=\"prevStep\"\n          secondary\n        >\n          \u003Ctemplate #icon>\n            \u003CIcon name=\"mdi:chevron-left\" />\n          \u003C/template>\n          上一步\n        \u003C/n-button>\n        \n        \u003Cn-button\n          v-if=\"currentStep \u003C stepsList.length\"\n          :disabled=\"currentStep >= stepsList.length\"\n          @click=\"nextStep\"\n          type=\"primary\"\n        >\n          下一步\n          \u003Ctemplate #icon>\n            \u003CIcon name=\"mdi:chevron-right\" />\n          \u003C/template>\n        \u003C/n-button>\n        \n        \u003Cn-button\n          v-else\n          type=\"success\"\n          @click=\"onComplete\"\n        >\n          \u003Ctemplate #icon>\n            \u003CIcon name=\"mdi:check\" />\n          \u003C/template>\n          完成\n        \u003C/n-button>\n      \u003C/div>\n    \u003C/div>\n  \u003C/div>\n\u003C/template>\n\n\u003Cscript setup>\n/**\n * Steps 步骤条组件 - MDC 语法\n * \n * 在 Markdown 中使用：\n * ::steps{current=\"2\" status=\"process\"}\n * ---\n * steps:\n *   - title: \"第一步\"\n *     description: \"注册账号\"\n *   - title: \"第二步\"\n *     description: \"完善信息\"\n *   - title: \"第三步\"\n *     description: \"开始使用\"\n * ---\n * ::\n * \n * 垂直布局带控制按钮：\n * ::steps{current=\"1\" vertical showControls}\n * ---\n * steps:\n *   - title: \"安装依赖\"\n *     description: \"npm install\"\n *   - title: \"配置文件\"\n *     description: \"修改 config.js\"\n *   - title: \"运行项目\"\n *     description: \"npm run dev\"\n * ---\n * ::\n * \n * 可点击步骤：\n * ::steps{current=\"2\" clickable showControls}\n * ---\n * steps:\n *   - title: \"选择模板\"\n *   - title: \"填写信息\"\n *   - title: \"确认提交\"\n * ---\n * ::\n */\n\nconst props = defineProps({\n  // 当前步骤（从1开始）\n  current: {\n    type: [Number, String],\n    default: 1\n  },\n  // 当前步骤状态: process | finish | error | wait\n  status: {\n    type: String,\n    default: 'process',\n    validator: (value) => ['process', 'finish', 'error', 'wait'].includes(value)\n  },\n  // 是否垂直布局\n  vertical: {\n    type: Boolean,\n    default: false\n  },\n  // 尺寸: small | medium\n  size: {\n    type: String,\n    default: 'medium',\n    validator: (value) => ['small', 'medium'].includes(value)\n  },\n  // 步骤列表（从 YAML frontmatter 传入）\n  steps: {\n    type: Array,\n    default: () => []\n  },\n  // 是否显示控制按钮\n  showControls: {\n    type: Boolean,\n    default: false\n  },\n  // 是否可点击步骤跳转\n  clickable: {\n    type: Boolean,\n    default: false\n  }\n})\n\nconst emit = defineEmits(['update:current', 'change', 'complete'])\n\nconst currentStep = ref(Number(props.current) || 1)\n\nwatch(() => props.current, (newVal) => {\n  currentStep.value = Number(newVal) || 1\n})\n\nconst stepsList = computed(() => {\n  return props.steps || []\n})\n\nconst prevStep = () => {\n  if (currentStep.value > 1) {\n    currentStep.value--\n    emit('update:current', currentStep.value)\n    emit('change', currentStep.value)\n  }\n}\n\nconst nextStep = () => {\n  if (currentStep.value \u003C stepsList.value.length) {\n    currentStep.value++\n    emit('update:current', currentStep.value)\n    emit('change', currentStep.value)\n  }\n}\n\nconst onStepChange = (value) => {\n  if (props.clickable) {\n    currentStep.value = value\n    emit('update:current', value)\n    emit('change', value)\n  }\n}\n\nconst onComplete = () => {\n  emit('complete')\n}\n\u003C/script>\n\n\u003Cstyle scoped>\n/* 暗色模式下 n-steps 组件的颜色调整 */\n.dark .steps-mdc :deep(.n-step__title) {\n  color: #e2e8f0;\n}\n\n.dark .steps-mdc :deep(.n-step__description) {\n  color: #94a3b8;\n}\n\n.dark .steps-mdc :deep(.n-step__indicator) {\n  background: #0f172a;\n  border: 1px solid #334155;\n  color: #e2e8f0;\n}\n\n.dark .steps-mdc :deep(.n-step__line) {\n  background: linear-gradient(90deg, #1f2937, #334155);\n}\n\n.dark .steps-mdc :deep(.n-step--process .n-step__indicator) {\n  background: #0b1220;\n  border-color: #38bdf8;\n  color: #e0f2fe;\n}\n\n.dark .steps-mdc :deep(.n-step--finish .n-step__indicator) {\n  background: #052e2b;\n  border-color: #34d399;\n  color: #d1fae5;\n}\n\n.dark .steps-mdc :deep(.n-step--error .n-step__indicator) {\n  background: #3b1d2a;\n  border-color: #f87171;\n  color: #fecaca;\n}\n\n.dark .steps-mdc :deep(.n-step--finish .n-step__line) {\n  background: linear-gradient(90deg, #10b981, #34d399);\n}\n\n.dark .steps-mdc :deep(.n-step--process .n-step__line) {\n  background: linear-gradient(90deg, #38bdf8, #0ea5e9);\n}\n\n.dark .steps-mdc :deep(.n-step--error .n-step__line) {\n  background: linear-gradient(90deg, #f87171, #ef4444);\n}\n\n@media (max-width: 640px) {\n  .steps-controls {\n    justify-content: center;\n  }\n}\n\u003C/style>\n\n```\n::\n\n\n\n\n\n\n\n\n\n","https://cfimg.wasd09090030.top/file/Game/1771414414354_20260218143950_1.webp","work",[11,12,13],"前端","MDC","Vue","本文介绍了如何在Vue生态中使用Nuxt MDC（Markdown Components）打造动态博客内容。MDC允许在Markdown中直接嵌入Vue组件，实现交互性。文章详细讲解了MDC的基础概念、环境搭建步骤，并通过创建自定义星级评分组件的实例，展示了如何将静态Markdown转换为动态体验。","2026-02-19T12:37:44.9600722","2026-02-21T13:32:57.8137785",{"data":18,"body":21,"toc":17301},{"title":19,"description":20},"","我一直想打造出动态的博客内容，React生态的MDX的强大有目共睹，那么在Vue生态中有没有什么平替呢？",{"type":22,"children":23},"root",[24,31,44,49,53,60,76,86,92,97,159,167,191,194,200,205,244,257,349,352,358,379,385,390,402,3277,3282,3304,3311,3317,3330,3408,3411,3417,3429,3435,3448,3484,3490,3496,3517,3529,3587,3598,3604,3616,3827,3832,3835,3841,3908,3913,3918,3923,3928,3933,17296],{"type":25,"tag":26,"props":27,"children":28},"element","p",{},[29],{"type":30,"value":20},"text",{"type":25,"tag":26,"props":32,"children":33},{},[34,36,42],{"type":30,"value":35},"这就不得不提到 ",{"type":25,"tag":37,"props":38,"children":39},"strong",{},[40],{"type":30,"value":41},"Nuxt MDC (Markdown Components)",{"type":30,"value":43}," 了。",{"type":25,"tag":26,"props":45,"children":46},{},[47],{"type":30,"value":48},"在这篇文章中，我们将深入探讨如何利用 Nuxt MDC 的自定义组件功能，将枯燥的静态文章转变为充满交互性的动态体验。",{"type":25,"tag":50,"props":51,"children":52},"hr",{},[],{"type":25,"tag":54,"props":55,"children":57},"h2",{"id":56},"什么是-nuxt-mdc",[58],{"type":30,"value":59},"什么是 Nuxt MDC？",{"type":25,"tag":26,"props":61,"children":62},{},[63,67,69,74],{"type":25,"tag":37,"props":64,"children":65},{},[66],{"type":30,"value":12},{"type":30,"value":68}," 代表 ",{"type":25,"tag":37,"props":70,"children":71},{},[72],{"type":30,"value":73},"MarkDown Components",{"type":30,"value":75},"。它是 Nuxt 生态中的一个革命性工具（也是 Nuxt Content v2 的核心），允许你在 Markdown 文件中直接书写 Vue 组件。",{"type":25,"tag":26,"props":77,"children":78},{},[79,81],{"type":30,"value":80},"它的核心理念是：",{"type":25,"tag":37,"props":82,"children":83},{},[84],{"type":30,"value":85},"Markdown 负责内容结构，Vue 组件负责交互和逻辑。",{"type":25,"tag":87,"props":88,"children":90},"h3",{"id":89},"基础语法预览",[91],{"type":30,"value":89},{"type":25,"tag":26,"props":93,"children":94},{},[95],{"type":30,"value":96},"在传统的 Markdown 中，你只能写 HTML 标签。但在 MDC 中，你可以这样写：",{"type":25,"tag":98,"props":99,"children":103},"pre",{"className":100,"code":101,"language":102,"meta":19,"style":19},"language-markdown shiki shiki-themes material-theme-darker one-dark-pro","::alert{type=\"warning\"}\n这是提示内容，支持 **Markdown** 格式\n::\n","markdown",[104],{"type":25,"tag":105,"props":106,"children":107},"code",{"__ignoreMap":19},[108,120,150],{"type":25,"tag":109,"props":110,"children":113},"span",{"class":111,"line":112},"line",1,[114],{"type":25,"tag":109,"props":115,"children":117},{"style":116},"--shiki-default:#EEFFFF;--shiki-dark:#ABB2BF",[118],{"type":30,"value":119},"::alert{type=\"warning\"}\n",{"type":25,"tag":109,"props":121,"children":123},{"class":111,"line":122},2,[124,129,135,141,145],{"type":25,"tag":109,"props":125,"children":126},{"style":116},[127],{"type":30,"value":128},"这是提示内容，支持 ",{"type":25,"tag":109,"props":130,"children":132},{"style":131},"--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#D19A66;--shiki-dark-font-weight:inherit",[133],{"type":30,"value":134},"**",{"type":25,"tag":109,"props":136,"children":138},{"style":137},"--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#D19A66;--shiki-dark-font-weight:inherit",[139],{"type":30,"value":140},"Markdown",{"type":25,"tag":109,"props":142,"children":143},{"style":131},[144],{"type":30,"value":134},{"type":25,"tag":109,"props":146,"children":147},{"style":116},[148],{"type":30,"value":149}," 格式\n",{"type":25,"tag":109,"props":151,"children":153},{"class":111,"line":152},3,[154],{"type":25,"tag":109,"props":155,"children":156},{"style":116},[157],{"type":30,"value":158},"::\n",{"type":25,"tag":26,"props":160,"children":161},{},[162],{"type":25,"tag":37,"props":163,"children":164},{},[165],{"type":30,"value":166},"效果如下",{"type":25,"tag":168,"props":169,"children":171},"alert",{"type":170},"warning",[172,181],{"type":25,"tag":173,"props":174,"children":175},"template",{"v-slot:title":19},[176],{"type":25,"tag":26,"props":177,"children":178},{},[179],{"type":30,"value":180},"提示标题",{"type":25,"tag":26,"props":182,"children":183},{},[184,185,189],{"type":30,"value":128},{"type":25,"tag":37,"props":186,"children":187},{},[188],{"type":30,"value":140},{"type":30,"value":190}," 格式",{"type":25,"tag":50,"props":192,"children":193},{},[],{"type":25,"tag":54,"props":195,"children":197},{"id":196},"第一步环境搭建",[198],{"type":30,"value":199},"第一步：环境搭建",{"type":25,"tag":26,"props":201,"children":202},{},[203],{"type":30,"value":204},"如果你使用的是 Nuxt Content，MDC 已经内置其中。如果你想在普通 Nuxt 项目中使用，可以单独安装：",{"type":25,"tag":98,"props":206,"children":210},{"className":207,"code":208,"language":209,"meta":19,"style":19},"language-bash shiki shiki-themes material-theme-darker one-dark-pro","npx nuxi@latest module add mdc\n","bash",[211],{"type":25,"tag":105,"props":212,"children":213},{"__ignoreMap":19},[214],{"type":25,"tag":109,"props":215,"children":216},{"class":111,"line":112},[217,223,229,234,239],{"type":25,"tag":109,"props":218,"children":220},{"style":219},"--shiki-default:#FFCB6B;--shiki-dark:#61AFEF",[221],{"type":30,"value":222},"npx",{"type":25,"tag":109,"props":224,"children":226},{"style":225},"--shiki-default:#C3E88D;--shiki-dark:#98C379",[227],{"type":30,"value":228}," nuxi@latest",{"type":25,"tag":109,"props":230,"children":231},{"style":225},[232],{"type":30,"value":233}," module",{"type":25,"tag":109,"props":235,"children":236},{"style":225},[237],{"type":30,"value":238}," add",{"type":25,"tag":109,"props":240,"children":241},{"style":225},[242],{"type":30,"value":243}," mdc\n",{"type":25,"tag":26,"props":245,"children":246},{},[247,249,255],{"type":30,"value":248},"在 ",{"type":25,"tag":105,"props":250,"children":252},{"className":251},[],[253],{"type":30,"value":254},"nuxt.config.ts",{"type":30,"value":256}," 中配置：",{"type":25,"tag":98,"props":258,"children":262},{"className":259,"code":260,"language":261,"meta":19,"style":19},"language-typescript shiki shiki-themes material-theme-darker one-dark-pro","export default defineNuxtConfig({\n  modules: ['@nuxtjs/mdc']\n})\n","typescript",[263],{"type":25,"tag":105,"props":264,"children":265},{"__ignoreMap":19},[266,297,336],{"type":25,"tag":109,"props":267,"children":268},{"class":111,"line":112},[269,275,280,286,291],{"type":25,"tag":109,"props":270,"children":272},{"style":271},"--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#C678DD;--shiki-dark-font-style:inherit",[273],{"type":30,"value":274},"export",{"type":25,"tag":109,"props":276,"children":277},{"style":271},[278],{"type":30,"value":279}," default",{"type":25,"tag":109,"props":281,"children":283},{"style":282},"--shiki-default:#82AAFF;--shiki-dark:#61AFEF",[284],{"type":30,"value":285}," defineNuxtConfig",{"type":25,"tag":109,"props":287,"children":288},{"style":116},[289],{"type":30,"value":290},"(",{"type":25,"tag":109,"props":292,"children":294},{"style":293},"--shiki-default:#89DDFF;--shiki-dark:#ABB2BF",[295],{"type":30,"value":296},"{\n",{"type":25,"tag":109,"props":298,"children":299},{"class":111,"line":122},[300,306,311,316,322,327,331],{"type":25,"tag":109,"props":301,"children":303},{"style":302},"--shiki-default:#F07178;--shiki-dark:#E06C75",[304],{"type":30,"value":305},"  modules",{"type":25,"tag":109,"props":307,"children":308},{"style":293},[309],{"type":30,"value":310},":",{"type":25,"tag":109,"props":312,"children":313},{"style":116},[314],{"type":30,"value":315}," [",{"type":25,"tag":109,"props":317,"children":319},{"style":318},"--shiki-default:#89DDFF;--shiki-dark:#98C379",[320],{"type":30,"value":321},"'",{"type":25,"tag":109,"props":323,"children":324},{"style":225},[325],{"type":30,"value":326},"@nuxtjs/mdc",{"type":25,"tag":109,"props":328,"children":329},{"style":318},[330],{"type":30,"value":321},{"type":25,"tag":109,"props":332,"children":333},{"style":116},[334],{"type":30,"value":335},"]\n",{"type":25,"tag":109,"props":337,"children":338},{"class":111,"line":152},[339,344],{"type":25,"tag":109,"props":340,"children":341},{"style":293},[342],{"type":30,"value":343},"}",{"type":25,"tag":109,"props":345,"children":346},{"style":116},[347],{"type":30,"value":348},")\n",{"type":25,"tag":50,"props":350,"children":351},{},[],{"type":25,"tag":54,"props":353,"children":355},{"id":354},"第二步打造你的第一个自定义-mdc-组件",[356],{"type":30,"value":357},"第二步：打造你的第一个自定义 MDC 组件",{"type":25,"tag":26,"props":359,"children":360},{},[361,363,369,371,377],{"type":30,"value":362},"要让 Markdown 识别你的组件，默认情况下你需要将 Vue 文件放在 ",{"type":25,"tag":105,"props":364,"children":366},{"className":365},[],[367],{"type":30,"value":368},"components/content/",{"type":30,"value":370},"（Nuxt Content 用户）或 ",{"type":25,"tag":105,"props":372,"children":374},{"className":373},[],[375],{"type":30,"value":376},"components/mdc/",{"type":30,"value":378},"（独立 MDC 用户）目录下。",{"type":25,"tag":87,"props":380,"children":382},{"id":381},"_1-创建一个星级评分组件",[383],{"type":30,"value":384},"1. 创建一个星级评分组件",{"type":25,"tag":26,"props":386,"children":387},{},[388],{"type":30,"value":389},"我的博客使用的NaiveUI，因此可以将NaiveUI的一些特殊组件写成MDC组件，就比如Rating组件。",{"type":25,"tag":26,"props":391,"children":392},{},[393,395,401],{"type":30,"value":394},"创建 ",{"type":25,"tag":105,"props":396,"children":398},{"className":397},[],[399],{"type":30,"value":400},"components/content/StarRating.vue",{"type":30,"value":310},{"type":25,"tag":98,"props":403,"children":407},{"className":404,"code":405,"language":406,"meta":19,"style":19},"language-vue shiki shiki-themes material-theme-darker one-dark-pro","\u003Ctemplate>\n  \u003Cdiv class=\"star-rating-mdc my-4\">\n    \u003Cdiv class=\"star-rating-inner\">\n      \u003Cspan v-if=\"label\" class=\"star-rating-label text-gray-600 dark:text-gray-400\">\n        {{ label }}:\n      \u003C/span>\n\n      \u003Cn-rate\n        :value=\"displayRating\"\n        :count=\"Number(maxStars)\"\n        :size=\"rateSize\"\n        :readonly=\"readonly\"\n        :allow-half=\"true\"\n        color=\"#facc15\"\n        class=\"star-rating-rate\"\n        @update:value=\"handleRateUpdate\"\n      />\n    \u003C/div>\n  \u003C/div>\n\u003C/template>\n\n\u003Cscript setup>\n\nconst props = defineProps({\n  rating: {\n    type: [Number, String],\n    default: 0\n  },\n  maxStars: {\n    type: [Number, String],\n    default: 5\n  },\n  size: {\n    type: String,\n    default: 'medium', // 'small' | 'medium' | 'large'\n    validator: (value) => ['small', 'medium', 'large'].includes(value)\n  },\n  readonly: {\n    type: Boolean,\n    default: true\n  },\n  showScore: {\n    type: Boolean,\n    default: true\n  },\n  label: {\n    type: String,\n    default: ''\n  }\n})\n\nconst emit = defineEmits(['update:rating'])\n\nconst normalizeRating = (rating, maxStars) => {\n  const parsed = Number(rating)\n  const parsedMax = Number(maxStars)\n\n  if (Number.isNaN(parsed)) return 0\n  const max = Number.isNaN(parsedMax) ? 5 : parsedMax\n  const clamped = Math.max(0, Math.min(parsed, max))\n  return Math.round(clamped * 2) / 2\n}\n\nconst currentRating = ref(normalizeRating(props.rating, props.maxStars))\n\nwatch(\n  () => [props.rating, props.maxStars],\n  ([rating, maxStars]) => {\n    currentRating.value = normalizeRating(rating, maxStars)\n  }\n)\n\nconst displayRating = computed(() => normalizeRating(currentRating.value, props.maxStars))\n\nconst handleRateUpdate = (value) => {\n  const nextValue = normalizeRating(value, props.maxStars)\n  currentRating.value = nextValue\n\n  if (!props.readonly) {\n    emit('update:rating', nextValue)\n  }\n}\n\n// 映射 size 到 n-rate 的尺寸\nconst rateSize = computed(() => {\n  const sizeMap = {\n    small: 18,\n    medium: 24,\n    large: 28\n  }\n  return sizeMap[props.size] || 24\n})\n\u003C/script>\n\n\u003Cstyle scoped>\n.star-rating-mdc {\n  display: block;\n}\n\n.star-rating-inner {\n  display: inline-flex;\n  align-items: center;\n  gap: 0.625rem;\n  line-height: 1;\n}\n\n.star-rating-label {\n  display: inline-flex;\n  align-items: center;\n  font-size: 0.95rem;\n  line-height: 1;\n}\n\n.star-rating-score {\n  display: inline-flex;\n  align-items: center;\n  font-size: 0.85rem;\n  line-height: 1;\n}\n\n/* :deep(.star-rating-rate.n-rate) {\n  display: inline-flex;\n  align-items: center;\n  line-height: 1;\n}\n\n:deep(.star-rating-rate .n-rate__item) {\n  display: inline-flex;\n  align-items: center;\n} */\n\u003C/style>\n\n","vue",[408],{"type":25,"tag":105,"props":409,"children":410},{"__ignoreMap":19},[411,428,470,507,567,576,593,603,616,643,669,695,721,747,773,799,825,834,851,868,885,893,915,923,958,976,1019,1038,1047,1064,1100,1117,1125,1142,1162,1198,1308,1316,1333,1354,1372,1380,1397,1417,1433,1441,1458,1478,1495,1504,1516,1524,1569,1577,1625,1661,1695,1703,1752,1816,1894,1949,1958,1966,2034,2042,2056,2109,2143,2188,2196,2204,2212,2288,2296,2333,2382,2408,2416,2453,2490,2498,2506,2514,2523,2560,2581,2603,2625,2643,2651,2696,2708,2724,2732,2754,2772,2797,2805,2813,2829,2850,2872,2900,2922,2930,2938,2955,2975,2995,3021,3041,3049,3057,3074,3094,3114,3139,3159,3167,3175,3184,3193,3202,3211,3219,3227,3236,3244,3252,3261],{"type":25,"tag":109,"props":412,"children":413},{"class":111,"line":112},[414,419,423],{"type":25,"tag":109,"props":415,"children":416},{"style":293},[417],{"type":30,"value":418},"\u003C",{"type":25,"tag":109,"props":420,"children":421},{"style":302},[422],{"type":30,"value":173},{"type":25,"tag":109,"props":424,"children":425},{"style":293},[426],{"type":30,"value":427},">\n",{"type":25,"tag":109,"props":429,"children":430},{"class":111,"line":122},[431,436,441,447,452,457,462,466],{"type":25,"tag":109,"props":432,"children":433},{"style":293},[434],{"type":30,"value":435},"  \u003C",{"type":25,"tag":109,"props":437,"children":438},{"style":302},[439],{"type":30,"value":440},"div",{"type":25,"tag":109,"props":442,"children":444},{"style":443},"--shiki-default:#C792EA;--shiki-dark:#D19A66",[445],{"type":30,"value":446}," class",{"type":25,"tag":109,"props":448,"children":449},{"style":293},[450],{"type":30,"value":451},"=",{"type":25,"tag":109,"props":453,"children":454},{"style":318},[455],{"type":30,"value":456},"\"",{"type":25,"tag":109,"props":458,"children":459},{"style":225},[460],{"type":30,"value":461},"star-rating-mdc my-4",{"type":25,"tag":109,"props":463,"children":464},{"style":318},[465],{"type":30,"value":456},{"type":25,"tag":109,"props":467,"children":468},{"style":293},[469],{"type":30,"value":427},{"type":25,"tag":109,"props":471,"children":472},{"class":111,"line":152},[473,478,482,486,490,494,499,503],{"type":25,"tag":109,"props":474,"children":475},{"style":293},[476],{"type":30,"value":477},"    \u003C",{"type":25,"tag":109,"props":479,"children":480},{"style":302},[481],{"type":30,"value":440},{"type":25,"tag":109,"props":483,"children":484},{"style":443},[485],{"type":30,"value":446},{"type":25,"tag":109,"props":487,"children":488},{"style":293},[489],{"type":30,"value":451},{"type":25,"tag":109,"props":491,"children":492},{"style":318},[493],{"type":30,"value":456},{"type":25,"tag":109,"props":495,"children":496},{"style":225},[497],{"type":30,"value":498},"star-rating-inner",{"type":25,"tag":109,"props":500,"children":501},{"style":318},[502],{"type":30,"value":456},{"type":25,"tag":109,"props":504,"children":505},{"style":293},[506],{"type":30,"value":427},{"type":25,"tag":109,"props":508,"children":510},{"class":111,"line":509},4,[511,516,520,525,529,533,538,542,546,550,554,559,563],{"type":25,"tag":109,"props":512,"children":513},{"style":293},[514],{"type":30,"value":515},"      \u003C",{"type":25,"tag":109,"props":517,"children":518},{"style":302},[519],{"type":30,"value":109},{"type":25,"tag":109,"props":521,"children":522},{"style":443},[523],{"type":30,"value":524}," v-if",{"type":25,"tag":109,"props":526,"children":527},{"style":293},[528],{"type":30,"value":451},{"type":25,"tag":109,"props":530,"children":531},{"style":318},[532],{"type":30,"value":456},{"type":25,"tag":109,"props":534,"children":535},{"style":225},[536],{"type":30,"value":537},"label",{"type":25,"tag":109,"props":539,"children":540},{"style":318},[541],{"type":30,"value":456},{"type":25,"tag":109,"props":543,"children":544},{"style":443},[545],{"type":30,"value":446},{"type":25,"tag":109,"props":547,"children":548},{"style":293},[549],{"type":30,"value":451},{"type":25,"tag":109,"props":551,"children":552},{"style":318},[553],{"type":30,"value":456},{"type":25,"tag":109,"props":555,"children":556},{"style":225},[557],{"type":30,"value":558},"star-rating-label text-gray-600 dark:text-gray-400",{"type":25,"tag":109,"props":560,"children":561},{"style":318},[562],{"type":30,"value":456},{"type":25,"tag":109,"props":564,"children":565},{"style":293},[566],{"type":30,"value":427},{"type":25,"tag":109,"props":568,"children":570},{"class":111,"line":569},5,[571],{"type":25,"tag":109,"props":572,"children":573},{"style":116},[574],{"type":30,"value":575},"        {{ label }}:\n",{"type":25,"tag":109,"props":577,"children":579},{"class":111,"line":578},6,[580,585,589],{"type":25,"tag":109,"props":581,"children":582},{"style":293},[583],{"type":30,"value":584},"      \u003C/",{"type":25,"tag":109,"props":586,"children":587},{"style":302},[588],{"type":30,"value":109},{"type":25,"tag":109,"props":590,"children":591},{"style":293},[592],{"type":30,"value":427},{"type":25,"tag":109,"props":594,"children":596},{"class":111,"line":595},7,[597],{"type":25,"tag":109,"props":598,"children":600},{"emptyLinePlaceholder":599},true,[601],{"type":30,"value":602},"\n",{"type":25,"tag":109,"props":604,"children":606},{"class":111,"line":605},8,[607,611],{"type":25,"tag":109,"props":608,"children":609},{"style":293},[610],{"type":30,"value":515},{"type":25,"tag":109,"props":612,"children":613},{"style":302},[614],{"type":30,"value":615},"n-rate\n",{"type":25,"tag":109,"props":617,"children":619},{"class":111,"line":618},9,[620,625,629,633,638],{"type":25,"tag":109,"props":621,"children":622},{"style":443},[623],{"type":30,"value":624},"        :value",{"type":25,"tag":109,"props":626,"children":627},{"style":293},[628],{"type":30,"value":451},{"type":25,"tag":109,"props":630,"children":631},{"style":318},[632],{"type":30,"value":456},{"type":25,"tag":109,"props":634,"children":635},{"style":225},[636],{"type":30,"value":637},"displayRating",{"type":25,"tag":109,"props":639,"children":640},{"style":318},[641],{"type":30,"value":642},"\"\n",{"type":25,"tag":109,"props":644,"children":646},{"class":111,"line":645},10,[647,652,656,660,665],{"type":25,"tag":109,"props":648,"children":649},{"style":443},[650],{"type":30,"value":651},"        :count",{"type":25,"tag":109,"props":653,"children":654},{"style":293},[655],{"type":30,"value":451},{"type":25,"tag":109,"props":657,"children":658},{"style":318},[659],{"type":30,"value":456},{"type":25,"tag":109,"props":661,"children":662},{"style":225},[663],{"type":30,"value":664},"Number(maxStars)",{"type":25,"tag":109,"props":666,"children":667},{"style":318},[668],{"type":30,"value":642},{"type":25,"tag":109,"props":670,"children":672},{"class":111,"line":671},11,[673,678,682,686,691],{"type":25,"tag":109,"props":674,"children":675},{"style":443},[676],{"type":30,"value":677},"        :size",{"type":25,"tag":109,"props":679,"children":680},{"style":293},[681],{"type":30,"value":451},{"type":25,"tag":109,"props":683,"children":684},{"style":318},[685],{"type":30,"value":456},{"type":25,"tag":109,"props":687,"children":688},{"style":225},[689],{"type":30,"value":690},"rateSize",{"type":25,"tag":109,"props":692,"children":693},{"style":318},[694],{"type":30,"value":642},{"type":25,"tag":109,"props":696,"children":698},{"class":111,"line":697},12,[699,704,708,712,717],{"type":25,"tag":109,"props":700,"children":701},{"style":443},[702],{"type":30,"value":703},"        :readonly",{"type":25,"tag":109,"props":705,"children":706},{"style":293},[707],{"type":30,"value":451},{"type":25,"tag":109,"props":709,"children":710},{"style":318},[711],{"type":30,"value":456},{"type":25,"tag":109,"props":713,"children":714},{"style":225},[715],{"type":30,"value":716},"readonly",{"type":25,"tag":109,"props":718,"children":719},{"style":318},[720],{"type":30,"value":642},{"type":25,"tag":109,"props":722,"children":724},{"class":111,"line":723},13,[725,730,734,738,743],{"type":25,"tag":109,"props":726,"children":727},{"style":443},[728],{"type":30,"value":729},"        :allow-half",{"type":25,"tag":109,"props":731,"children":732},{"style":293},[733],{"type":30,"value":451},{"type":25,"tag":109,"props":735,"children":736},{"style":318},[737],{"type":30,"value":456},{"type":25,"tag":109,"props":739,"children":740},{"style":225},[741],{"type":30,"value":742},"true",{"type":25,"tag":109,"props":744,"children":745},{"style":318},[746],{"type":30,"value":642},{"type":25,"tag":109,"props":748,"children":750},{"class":111,"line":749},14,[751,756,760,764,769],{"type":25,"tag":109,"props":752,"children":753},{"style":443},[754],{"type":30,"value":755},"        color",{"type":25,"tag":109,"props":757,"children":758},{"style":293},[759],{"type":30,"value":451},{"type":25,"tag":109,"props":761,"children":762},{"style":318},[763],{"type":30,"value":456},{"type":25,"tag":109,"props":765,"children":766},{"style":225},[767],{"type":30,"value":768},"#facc15",{"type":25,"tag":109,"props":770,"children":771},{"style":318},[772],{"type":30,"value":642},{"type":25,"tag":109,"props":774,"children":776},{"class":111,"line":775},15,[777,782,786,790,795],{"type":25,"tag":109,"props":778,"children":779},{"style":443},[780],{"type":30,"value":781},"        class",{"type":25,"tag":109,"props":783,"children":784},{"style":293},[785],{"type":30,"value":451},{"type":25,"tag":109,"props":787,"children":788},{"style":318},[789],{"type":30,"value":456},{"type":25,"tag":109,"props":791,"children":792},{"style":225},[793],{"type":30,"value":794},"star-rating-rate",{"type":25,"tag":109,"props":796,"children":797},{"style":318},[798],{"type":30,"value":642},{"type":25,"tag":109,"props":800,"children":802},{"class":111,"line":801},16,[803,808,812,816,821],{"type":25,"tag":109,"props":804,"children":805},{"style":443},[806],{"type":30,"value":807},"        @update:value",{"type":25,"tag":109,"props":809,"children":810},{"style":293},[811],{"type":30,"value":451},{"type":25,"tag":109,"props":813,"children":814},{"style":318},[815],{"type":30,"value":456},{"type":25,"tag":109,"props":817,"children":818},{"style":225},[819],{"type":30,"value":820},"handleRateUpdate",{"type":25,"tag":109,"props":822,"children":823},{"style":318},[824],{"type":30,"value":642},{"type":25,"tag":109,"props":826,"children":828},{"class":111,"line":827},17,[829],{"type":25,"tag":109,"props":830,"children":831},{"style":293},[832],{"type":30,"value":833},"      />\n",{"type":25,"tag":109,"props":835,"children":837},{"class":111,"line":836},18,[838,843,847],{"type":25,"tag":109,"props":839,"children":840},{"style":293},[841],{"type":30,"value":842},"    \u003C/",{"type":25,"tag":109,"props":844,"children":845},{"style":302},[846],{"type":30,"value":440},{"type":25,"tag":109,"props":848,"children":849},{"style":293},[850],{"type":30,"value":427},{"type":25,"tag":109,"props":852,"children":854},{"class":111,"line":853},19,[855,860,864],{"type":25,"tag":109,"props":856,"children":857},{"style":293},[858],{"type":30,"value":859},"  \u003C/",{"type":25,"tag":109,"props":861,"children":862},{"style":302},[863],{"type":30,"value":440},{"type":25,"tag":109,"props":865,"children":866},{"style":293},[867],{"type":30,"value":427},{"type":25,"tag":109,"props":869,"children":871},{"class":111,"line":870},20,[872,877,881],{"type":25,"tag":109,"props":873,"children":874},{"style":293},[875],{"type":30,"value":876},"\u003C/",{"type":25,"tag":109,"props":878,"children":879},{"style":302},[880],{"type":30,"value":173},{"type":25,"tag":109,"props":882,"children":883},{"style":293},[884],{"type":30,"value":427},{"type":25,"tag":109,"props":886,"children":888},{"class":111,"line":887},21,[889],{"type":25,"tag":109,"props":890,"children":891},{"emptyLinePlaceholder":599},[892],{"type":30,"value":602},{"type":25,"tag":109,"props":894,"children":896},{"class":111,"line":895},22,[897,901,906,911],{"type":25,"tag":109,"props":898,"children":899},{"style":293},[900],{"type":30,"value":418},{"type":25,"tag":109,"props":902,"children":903},{"style":302},[904],{"type":30,"value":905},"script",{"type":25,"tag":109,"props":907,"children":908},{"style":443},[909],{"type":30,"value":910}," setup",{"type":25,"tag":109,"props":912,"children":913},{"style":293},[914],{"type":30,"value":427},{"type":25,"tag":109,"props":916,"children":918},{"class":111,"line":917},23,[919],{"type":25,"tag":109,"props":920,"children":921},{"emptyLinePlaceholder":599},[922],{"type":30,"value":602},{"type":25,"tag":109,"props":924,"children":926},{"class":111,"line":925},24,[927,933,939,945,950,954],{"type":25,"tag":109,"props":928,"children":930},{"style":929},"--shiki-default:#C792EA;--shiki-dark:#C678DD",[931],{"type":30,"value":932},"const",{"type":25,"tag":109,"props":934,"children":936},{"style":935},"--shiki-default:#EEFFFF;--shiki-dark:#E5C07B",[937],{"type":30,"value":938}," props",{"type":25,"tag":109,"props":940,"children":942},{"style":941},"--shiki-default:#89DDFF;--shiki-dark:#56B6C2",[943],{"type":30,"value":944}," =",{"type":25,"tag":109,"props":946,"children":947},{"style":282},[948],{"type":30,"value":949}," defineProps",{"type":25,"tag":109,"props":951,"children":952},{"style":116},[953],{"type":30,"value":290},{"type":25,"tag":109,"props":955,"children":956},{"style":293},[957],{"type":30,"value":296},{"type":25,"tag":109,"props":959,"children":961},{"class":111,"line":960},25,[962,967,971],{"type":25,"tag":109,"props":963,"children":964},{"style":302},[965],{"type":30,"value":966},"  rating",{"type":25,"tag":109,"props":968,"children":969},{"style":293},[970],{"type":30,"value":310},{"type":25,"tag":109,"props":972,"children":973},{"style":293},[974],{"type":30,"value":975}," {\n",{"type":25,"tag":109,"props":977,"children":979},{"class":111,"line":978},26,[980,985,989,993,999,1004,1009,1014],{"type":25,"tag":109,"props":981,"children":982},{"style":302},[983],{"type":30,"value":984},"    type",{"type":25,"tag":109,"props":986,"children":987},{"style":293},[988],{"type":30,"value":310},{"type":25,"tag":109,"props":990,"children":991},{"style":116},[992],{"type":30,"value":315},{"type":25,"tag":109,"props":994,"children":996},{"style":995},"--shiki-default:#EEFFFF;--shiki-dark:#E06C75",[997],{"type":30,"value":998},"Number",{"type":25,"tag":109,"props":1000,"children":1001},{"style":293},[1002],{"type":30,"value":1003},",",{"type":25,"tag":109,"props":1005,"children":1006},{"style":995},[1007],{"type":30,"value":1008}," String",{"type":25,"tag":109,"props":1010,"children":1011},{"style":116},[1012],{"type":30,"value":1013},"]",{"type":25,"tag":109,"props":1015,"children":1016},{"style":293},[1017],{"type":30,"value":1018},",\n",{"type":25,"tag":109,"props":1020,"children":1022},{"class":111,"line":1021},27,[1023,1028,1032],{"type":25,"tag":109,"props":1024,"children":1025},{"style":302},[1026],{"type":30,"value":1027},"    default",{"type":25,"tag":109,"props":1029,"children":1030},{"style":293},[1031],{"type":30,"value":310},{"type":25,"tag":109,"props":1033,"children":1035},{"style":1034},"--shiki-default:#F78C6C;--shiki-dark:#D19A66",[1036],{"type":30,"value":1037}," 0\n",{"type":25,"tag":109,"props":1039,"children":1041},{"class":111,"line":1040},28,[1042],{"type":25,"tag":109,"props":1043,"children":1044},{"style":293},[1045],{"type":30,"value":1046},"  },\n",{"type":25,"tag":109,"props":1048,"children":1050},{"class":111,"line":1049},29,[1051,1056,1060],{"type":25,"tag":109,"props":1052,"children":1053},{"style":302},[1054],{"type":30,"value":1055},"  maxStars",{"type":25,"tag":109,"props":1057,"children":1058},{"style":293},[1059],{"type":30,"value":310},{"type":25,"tag":109,"props":1061,"children":1062},{"style":293},[1063],{"type":30,"value":975},{"type":25,"tag":109,"props":1065,"children":1067},{"class":111,"line":1066},30,[1068,1072,1076,1080,1084,1088,1092,1096],{"type":25,"tag":109,"props":1069,"children":1070},{"style":302},[1071],{"type":30,"value":984},{"type":25,"tag":109,"props":1073,"children":1074},{"style":293},[1075],{"type":30,"value":310},{"type":25,"tag":109,"props":1077,"children":1078},{"style":116},[1079],{"type":30,"value":315},{"type":25,"tag":109,"props":1081,"children":1082},{"style":995},[1083],{"type":30,"value":998},{"type":25,"tag":109,"props":1085,"children":1086},{"style":293},[1087],{"type":30,"value":1003},{"type":25,"tag":109,"props":1089,"children":1090},{"style":995},[1091],{"type":30,"value":1008},{"type":25,"tag":109,"props":1093,"children":1094},{"style":116},[1095],{"type":30,"value":1013},{"type":25,"tag":109,"props":1097,"children":1098},{"style":293},[1099],{"type":30,"value":1018},{"type":25,"tag":109,"props":1101,"children":1103},{"class":111,"line":1102},31,[1104,1108,1112],{"type":25,"tag":109,"props":1105,"children":1106},{"style":302},[1107],{"type":30,"value":1027},{"type":25,"tag":109,"props":1109,"children":1110},{"style":293},[1111],{"type":30,"value":310},{"type":25,"tag":109,"props":1113,"children":1114},{"style":1034},[1115],{"type":30,"value":1116}," 5\n",{"type":25,"tag":109,"props":1118,"children":1120},{"class":111,"line":1119},32,[1121],{"type":25,"tag":109,"props":1122,"children":1123},{"style":293},[1124],{"type":30,"value":1046},{"type":25,"tag":109,"props":1126,"children":1128},{"class":111,"line":1127},33,[1129,1134,1138],{"type":25,"tag":109,"props":1130,"children":1131},{"style":302},[1132],{"type":30,"value":1133},"  size",{"type":25,"tag":109,"props":1135,"children":1136},{"style":293},[1137],{"type":30,"value":310},{"type":25,"tag":109,"props":1139,"children":1140},{"style":293},[1141],{"type":30,"value":975},{"type":25,"tag":109,"props":1143,"children":1145},{"class":111,"line":1144},34,[1146,1150,1154,1158],{"type":25,"tag":109,"props":1147,"children":1148},{"style":302},[1149],{"type":30,"value":984},{"type":25,"tag":109,"props":1151,"children":1152},{"style":293},[1153],{"type":30,"value":310},{"type":25,"tag":109,"props":1155,"children":1156},{"style":995},[1157],{"type":30,"value":1008},{"type":25,"tag":109,"props":1159,"children":1160},{"style":293},[1161],{"type":30,"value":1018},{"type":25,"tag":109,"props":1163,"children":1165},{"class":111,"line":1164},35,[1166,1170,1174,1179,1184,1188,1192],{"type":25,"tag":109,"props":1167,"children":1168},{"style":302},[1169],{"type":30,"value":1027},{"type":25,"tag":109,"props":1171,"children":1172},{"style":293},[1173],{"type":30,"value":310},{"type":25,"tag":109,"props":1175,"children":1176},{"style":318},[1177],{"type":30,"value":1178}," '",{"type":25,"tag":109,"props":1180,"children":1181},{"style":225},[1182],{"type":30,"value":1183},"medium",{"type":25,"tag":109,"props":1185,"children":1186},{"style":318},[1187],{"type":30,"value":321},{"type":25,"tag":109,"props":1189,"children":1190},{"style":293},[1191],{"type":30,"value":1003},{"type":25,"tag":109,"props":1193,"children":1195},{"style":1194},"--shiki-default:#545454;--shiki-default-font-style:italic;--shiki-dark:#7F848E;--shiki-dark-font-style:italic",[1196],{"type":30,"value":1197}," // 'small' | 'medium' | 'large'\n",{"type":25,"tag":109,"props":1199,"children":1201},{"class":111,"line":1200},36,[1202,1207,1211,1216,1222,1227,1232,1236,1240,1245,1249,1253,1257,1261,1265,1269,1273,1278,1282,1286,1291,1296,1300,1304],{"type":25,"tag":109,"props":1203,"children":1204},{"style":282},[1205],{"type":30,"value":1206},"    validator",{"type":25,"tag":109,"props":1208,"children":1209},{"style":293},[1210],{"type":30,"value":310},{"type":25,"tag":109,"props":1212,"children":1213},{"style":293},[1214],{"type":30,"value":1215}," (",{"type":25,"tag":109,"props":1217,"children":1219},{"style":1218},"--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#E06C75;--shiki-dark-font-style:italic",[1220],{"type":30,"value":1221},"value",{"type":25,"tag":109,"props":1223,"children":1224},{"style":293},[1225],{"type":30,"value":1226},")",{"type":25,"tag":109,"props":1228,"children":1229},{"style":929},[1230],{"type":30,"value":1231}," =>",{"type":25,"tag":109,"props":1233,"children":1234},{"style":116},[1235],{"type":30,"value":315},{"type":25,"tag":109,"props":1237,"children":1238},{"style":318},[1239],{"type":30,"value":321},{"type":25,"tag":109,"props":1241,"children":1242},{"style":225},[1243],{"type":30,"value":1244},"small",{"type":25,"tag":109,"props":1246,"children":1247},{"style":318},[1248],{"type":30,"value":321},{"type":25,"tag":109,"props":1250,"children":1251},{"style":293},[1252],{"type":30,"value":1003},{"type":25,"tag":109,"props":1254,"children":1255},{"style":318},[1256],{"type":30,"value":1178},{"type":25,"tag":109,"props":1258,"children":1259},{"style":225},[1260],{"type":30,"value":1183},{"type":25,"tag":109,"props":1262,"children":1263},{"style":318},[1264],{"type":30,"value":321},{"type":25,"tag":109,"props":1266,"children":1267},{"style":293},[1268],{"type":30,"value":1003},{"type":25,"tag":109,"props":1270,"children":1271},{"style":318},[1272],{"type":30,"value":1178},{"type":25,"tag":109,"props":1274,"children":1275},{"style":225},[1276],{"type":30,"value":1277},"large",{"type":25,"tag":109,"props":1279,"children":1280},{"style":318},[1281],{"type":30,"value":321},{"type":25,"tag":109,"props":1283,"children":1284},{"style":116},[1285],{"type":30,"value":1013},{"type":25,"tag":109,"props":1287,"children":1288},{"style":293},[1289],{"type":30,"value":1290},".",{"type":25,"tag":109,"props":1292,"children":1293},{"style":282},[1294],{"type":30,"value":1295},"includes",{"type":25,"tag":109,"props":1297,"children":1298},{"style":116},[1299],{"type":30,"value":290},{"type":25,"tag":109,"props":1301,"children":1302},{"style":995},[1303],{"type":30,"value":1221},{"type":25,"tag":109,"props":1305,"children":1306},{"style":116},[1307],{"type":30,"value":348},{"type":25,"tag":109,"props":1309,"children":1311},{"class":111,"line":1310},37,[1312],{"type":25,"tag":109,"props":1313,"children":1314},{"style":293},[1315],{"type":30,"value":1046},{"type":25,"tag":109,"props":1317,"children":1319},{"class":111,"line":1318},38,[1320,1325,1329],{"type":25,"tag":109,"props":1321,"children":1322},{"style":302},[1323],{"type":30,"value":1324},"  readonly",{"type":25,"tag":109,"props":1326,"children":1327},{"style":293},[1328],{"type":30,"value":310},{"type":25,"tag":109,"props":1330,"children":1331},{"style":293},[1332],{"type":30,"value":975},{"type":25,"tag":109,"props":1334,"children":1336},{"class":111,"line":1335},39,[1337,1341,1345,1350],{"type":25,"tag":109,"props":1338,"children":1339},{"style":302},[1340],{"type":30,"value":984},{"type":25,"tag":109,"props":1342,"children":1343},{"style":293},[1344],{"type":30,"value":310},{"type":25,"tag":109,"props":1346,"children":1347},{"style":995},[1348],{"type":30,"value":1349}," Boolean",{"type":25,"tag":109,"props":1351,"children":1352},{"style":293},[1353],{"type":30,"value":1018},{"type":25,"tag":109,"props":1355,"children":1357},{"class":111,"line":1356},40,[1358,1362,1366],{"type":25,"tag":109,"props":1359,"children":1360},{"style":302},[1361],{"type":30,"value":1027},{"type":25,"tag":109,"props":1363,"children":1364},{"style":293},[1365],{"type":30,"value":310},{"type":25,"tag":109,"props":1367,"children":1369},{"style":1368},"--shiki-default:#FF9CAC;--shiki-dark:#D19A66",[1370],{"type":30,"value":1371}," true\n",{"type":25,"tag":109,"props":1373,"children":1375},{"class":111,"line":1374},41,[1376],{"type":25,"tag":109,"props":1377,"children":1378},{"style":293},[1379],{"type":30,"value":1046},{"type":25,"tag":109,"props":1381,"children":1383},{"class":111,"line":1382},42,[1384,1389,1393],{"type":25,"tag":109,"props":1385,"children":1386},{"style":302},[1387],{"type":30,"value":1388},"  showScore",{"type":25,"tag":109,"props":1390,"children":1391},{"style":293},[1392],{"type":30,"value":310},{"type":25,"tag":109,"props":1394,"children":1395},{"style":293},[1396],{"type":30,"value":975},{"type":25,"tag":109,"props":1398,"children":1400},{"class":111,"line":1399},43,[1401,1405,1409,1413],{"type":25,"tag":109,"props":1402,"children":1403},{"style":302},[1404],{"type":30,"value":984},{"type":25,"tag":109,"props":1406,"children":1407},{"style":293},[1408],{"type":30,"value":310},{"type":25,"tag":109,"props":1410,"children":1411},{"style":995},[1412],{"type":30,"value":1349},{"type":25,"tag":109,"props":1414,"children":1415},{"style":293},[1416],{"type":30,"value":1018},{"type":25,"tag":109,"props":1418,"children":1420},{"class":111,"line":1419},44,[1421,1425,1429],{"type":25,"tag":109,"props":1422,"children":1423},{"style":302},[1424],{"type":30,"value":1027},{"type":25,"tag":109,"props":1426,"children":1427},{"style":293},[1428],{"type":30,"value":310},{"type":25,"tag":109,"props":1430,"children":1431},{"style":1368},[1432],{"type":30,"value":1371},{"type":25,"tag":109,"props":1434,"children":1436},{"class":111,"line":1435},45,[1437],{"type":25,"tag":109,"props":1438,"children":1439},{"style":293},[1440],{"type":30,"value":1046},{"type":25,"tag":109,"props":1442,"children":1444},{"class":111,"line":1443},46,[1445,1450,1454],{"type":25,"tag":109,"props":1446,"children":1447},{"style":302},[1448],{"type":30,"value":1449},"  label",{"type":25,"tag":109,"props":1451,"children":1452},{"style":293},[1453],{"type":30,"value":310},{"type":25,"tag":109,"props":1455,"children":1456},{"style":293},[1457],{"type":30,"value":975},{"type":25,"tag":109,"props":1459,"children":1461},{"class":111,"line":1460},47,[1462,1466,1470,1474],{"type":25,"tag":109,"props":1463,"children":1464},{"style":302},[1465],{"type":30,"value":984},{"type":25,"tag":109,"props":1467,"children":1468},{"style":293},[1469],{"type":30,"value":310},{"type":25,"tag":109,"props":1471,"children":1472},{"style":995},[1473],{"type":30,"value":1008},{"type":25,"tag":109,"props":1475,"children":1476},{"style":293},[1477],{"type":30,"value":1018},{"type":25,"tag":109,"props":1479,"children":1481},{"class":111,"line":1480},48,[1482,1486,1490],{"type":25,"tag":109,"props":1483,"children":1484},{"style":302},[1485],{"type":30,"value":1027},{"type":25,"tag":109,"props":1487,"children":1488},{"style":293},[1489],{"type":30,"value":310},{"type":25,"tag":109,"props":1491,"children":1492},{"style":318},[1493],{"type":30,"value":1494}," ''\n",{"type":25,"tag":109,"props":1496,"children":1498},{"class":111,"line":1497},49,[1499],{"type":25,"tag":109,"props":1500,"children":1501},{"style":293},[1502],{"type":30,"value":1503},"  }\n",{"type":25,"tag":109,"props":1505,"children":1507},{"class":111,"line":1506},50,[1508,1512],{"type":25,"tag":109,"props":1509,"children":1510},{"style":293},[1511],{"type":30,"value":343},{"type":25,"tag":109,"props":1513,"children":1514},{"style":116},[1515],{"type":30,"value":348},{"type":25,"tag":109,"props":1517,"children":1519},{"class":111,"line":1518},51,[1520],{"type":25,"tag":109,"props":1521,"children":1522},{"emptyLinePlaceholder":599},[1523],{"type":30,"value":602},{"type":25,"tag":109,"props":1525,"children":1527},{"class":111,"line":1526},52,[1528,1532,1537,1541,1546,1551,1555,1560,1564],{"type":25,"tag":109,"props":1529,"children":1530},{"style":929},[1531],{"type":30,"value":932},{"type":25,"tag":109,"props":1533,"children":1534},{"style":935},[1535],{"type":30,"value":1536}," emit",{"type":25,"tag":109,"props":1538,"children":1539},{"style":941},[1540],{"type":30,"value":944},{"type":25,"tag":109,"props":1542,"children":1543},{"style":282},[1544],{"type":30,"value":1545}," defineEmits",{"type":25,"tag":109,"props":1547,"children":1548},{"style":116},[1549],{"type":30,"value":1550},"([",{"type":25,"tag":109,"props":1552,"children":1553},{"style":318},[1554],{"type":30,"value":321},{"type":25,"tag":109,"props":1556,"children":1557},{"style":225},[1558],{"type":30,"value":1559},"update:rating",{"type":25,"tag":109,"props":1561,"children":1562},{"style":318},[1563],{"type":30,"value":321},{"type":25,"tag":109,"props":1565,"children":1566},{"style":116},[1567],{"type":30,"value":1568},"])\n",{"type":25,"tag":109,"props":1570,"children":1572},{"class":111,"line":1571},53,[1573],{"type":25,"tag":109,"props":1574,"children":1575},{"emptyLinePlaceholder":599},[1576],{"type":30,"value":602},{"type":25,"tag":109,"props":1578,"children":1580},{"class":111,"line":1579},54,[1581,1585,1591,1595,1599,1604,1608,1613,1617,1621],{"type":25,"tag":109,"props":1582,"children":1583},{"style":929},[1584],{"type":30,"value":932},{"type":25,"tag":109,"props":1586,"children":1588},{"style":1587},"--shiki-default:#EEFFFF;--shiki-dark:#61AFEF",[1589],{"type":30,"value":1590}," normalizeRating",{"type":25,"tag":109,"props":1592,"children":1593},{"style":941},[1594],{"type":30,"value":944},{"type":25,"tag":109,"props":1596,"children":1597},{"style":293},[1598],{"type":30,"value":1215},{"type":25,"tag":109,"props":1600,"children":1601},{"style":1218},[1602],{"type":30,"value":1603},"rating",{"type":25,"tag":109,"props":1605,"children":1606},{"style":293},[1607],{"type":30,"value":1003},{"type":25,"tag":109,"props":1609,"children":1610},{"style":1218},[1611],{"type":30,"value":1612}," maxStars",{"type":25,"tag":109,"props":1614,"children":1615},{"style":293},[1616],{"type":30,"value":1226},{"type":25,"tag":109,"props":1618,"children":1619},{"style":929},[1620],{"type":30,"value":1231},{"type":25,"tag":109,"props":1622,"children":1623},{"style":293},[1624],{"type":30,"value":975},{"type":25,"tag":109,"props":1626,"children":1628},{"class":111,"line":1627},55,[1629,1634,1639,1643,1648,1653,1657],{"type":25,"tag":109,"props":1630,"children":1631},{"style":929},[1632],{"type":30,"value":1633},"  const",{"type":25,"tag":109,"props":1635,"children":1636},{"style":935},[1637],{"type":30,"value":1638}," parsed",{"type":25,"tag":109,"props":1640,"children":1641},{"style":941},[1642],{"type":30,"value":944},{"type":25,"tag":109,"props":1644,"children":1645},{"style":282},[1646],{"type":30,"value":1647}," Number",{"type":25,"tag":109,"props":1649,"children":1651},{"style":1650},"--shiki-default:#F07178;--shiki-dark:#ABB2BF",[1652],{"type":30,"value":290},{"type":25,"tag":109,"props":1654,"children":1655},{"style":995},[1656],{"type":30,"value":1603},{"type":25,"tag":109,"props":1658,"children":1659},{"style":1650},[1660],{"type":30,"value":348},{"type":25,"tag":109,"props":1662,"children":1664},{"class":111,"line":1663},56,[1665,1669,1674,1678,1682,1686,1691],{"type":25,"tag":109,"props":1666,"children":1667},{"style":929},[1668],{"type":30,"value":1633},{"type":25,"tag":109,"props":1670,"children":1671},{"style":935},[1672],{"type":30,"value":1673}," parsedMax",{"type":25,"tag":109,"props":1675,"children":1676},{"style":941},[1677],{"type":30,"value":944},{"type":25,"tag":109,"props":1679,"children":1680},{"style":282},[1681],{"type":30,"value":1647},{"type":25,"tag":109,"props":1683,"children":1684},{"style":1650},[1685],{"type":30,"value":290},{"type":25,"tag":109,"props":1687,"children":1688},{"style":995},[1689],{"type":30,"value":1690},"maxStars",{"type":25,"tag":109,"props":1692,"children":1693},{"style":1650},[1694],{"type":30,"value":348},{"type":25,"tag":109,"props":1696,"children":1698},{"class":111,"line":1697},57,[1699],{"type":25,"tag":109,"props":1700,"children":1701},{"emptyLinePlaceholder":599},[1702],{"type":30,"value":602},{"type":25,"tag":109,"props":1704,"children":1706},{"class":111,"line":1705},58,[1707,1712,1716,1720,1724,1729,1733,1738,1743,1748],{"type":25,"tag":109,"props":1708,"children":1709},{"style":271},[1710],{"type":30,"value":1711},"  if",{"type":25,"tag":109,"props":1713,"children":1714},{"style":1650},[1715],{"type":30,"value":1215},{"type":25,"tag":109,"props":1717,"children":1718},{"style":935},[1719],{"type":30,"value":998},{"type":25,"tag":109,"props":1721,"children":1722},{"style":293},[1723],{"type":30,"value":1290},{"type":25,"tag":109,"props":1725,"children":1726},{"style":282},[1727],{"type":30,"value":1728},"isNaN",{"type":25,"tag":109,"props":1730,"children":1731},{"style":1650},[1732],{"type":30,"value":290},{"type":25,"tag":109,"props":1734,"children":1735},{"style":995},[1736],{"type":30,"value":1737},"parsed",{"type":25,"tag":109,"props":1739,"children":1740},{"style":1650},[1741],{"type":30,"value":1742},")) ",{"type":25,"tag":109,"props":1744,"children":1745},{"style":271},[1746],{"type":30,"value":1747},"return",{"type":25,"tag":109,"props":1749,"children":1750},{"style":1034},[1751],{"type":30,"value":1037},{"type":25,"tag":109,"props":1753,"children":1755},{"class":111,"line":1754},59,[1756,1760,1765,1769,1773,1777,1781,1785,1790,1795,1801,1806,1811],{"type":25,"tag":109,"props":1757,"children":1758},{"style":929},[1759],{"type":30,"value":1633},{"type":25,"tag":109,"props":1761,"children":1762},{"style":935},[1763],{"type":30,"value":1764}," max",{"type":25,"tag":109,"props":1766,"children":1767},{"style":941},[1768],{"type":30,"value":944},{"type":25,"tag":109,"props":1770,"children":1771},{"style":935},[1772],{"type":30,"value":1647},{"type":25,"tag":109,"props":1774,"children":1775},{"style":293},[1776],{"type":30,"value":1290},{"type":25,"tag":109,"props":1778,"children":1779},{"style":282},[1780],{"type":30,"value":1728},{"type":25,"tag":109,"props":1782,"children":1783},{"style":1650},[1784],{"type":30,"value":290},{"type":25,"tag":109,"props":1786,"children":1787},{"style":995},[1788],{"type":30,"value":1789},"parsedMax",{"type":25,"tag":109,"props":1791,"children":1792},{"style":1650},[1793],{"type":30,"value":1794},") ",{"type":25,"tag":109,"props":1796,"children":1798},{"style":1797},"--shiki-default:#89DDFF;--shiki-dark:#C678DD",[1799],{"type":30,"value":1800},"?",{"type":25,"tag":109,"props":1802,"children":1803},{"style":1034},[1804],{"type":30,"value":1805}," 5",{"type":25,"tag":109,"props":1807,"children":1808},{"style":1797},[1809],{"type":30,"value":1810}," :",{"type":25,"tag":109,"props":1812,"children":1813},{"style":995},[1814],{"type":30,"value":1815}," parsedMax\n",{"type":25,"tag":109,"props":1817,"children":1819},{"class":111,"line":1818},60,[1820,1824,1829,1833,1838,1842,1847,1851,1856,1860,1864,1868,1873,1877,1881,1885,1889],{"type":25,"tag":109,"props":1821,"children":1822},{"style":929},[1823],{"type":30,"value":1633},{"type":25,"tag":109,"props":1825,"children":1826},{"style":935},[1827],{"type":30,"value":1828}," clamped",{"type":25,"tag":109,"props":1830,"children":1831},{"style":941},[1832],{"type":30,"value":944},{"type":25,"tag":109,"props":1834,"children":1835},{"style":935},[1836],{"type":30,"value":1837}," Math",{"type":25,"tag":109,"props":1839,"children":1840},{"style":293},[1841],{"type":30,"value":1290},{"type":25,"tag":109,"props":1843,"children":1844},{"style":282},[1845],{"type":30,"value":1846},"max",{"type":25,"tag":109,"props":1848,"children":1849},{"style":1650},[1850],{"type":30,"value":290},{"type":25,"tag":109,"props":1852,"children":1853},{"style":1034},[1854],{"type":30,"value":1855},"0",{"type":25,"tag":109,"props":1857,"children":1858},{"style":293},[1859],{"type":30,"value":1003},{"type":25,"tag":109,"props":1861,"children":1862},{"style":935},[1863],{"type":30,"value":1837},{"type":25,"tag":109,"props":1865,"children":1866},{"style":293},[1867],{"type":30,"value":1290},{"type":25,"tag":109,"props":1869,"children":1870},{"style":282},[1871],{"type":30,"value":1872},"min",{"type":25,"tag":109,"props":1874,"children":1875},{"style":1650},[1876],{"type":30,"value":290},{"type":25,"tag":109,"props":1878,"children":1879},{"style":995},[1880],{"type":30,"value":1737},{"type":25,"tag":109,"props":1882,"children":1883},{"style":293},[1884],{"type":30,"value":1003},{"type":25,"tag":109,"props":1886,"children":1887},{"style":995},[1888],{"type":30,"value":1764},{"type":25,"tag":109,"props":1890,"children":1891},{"style":1650},[1892],{"type":30,"value":1893},"))\n",{"type":25,"tag":109,"props":1895,"children":1897},{"class":111,"line":1896},61,[1898,1903,1907,1911,1916,1920,1925,1930,1935,1939,1944],{"type":25,"tag":109,"props":1899,"children":1900},{"style":271},[1901],{"type":30,"value":1902},"  return",{"type":25,"tag":109,"props":1904,"children":1905},{"style":935},[1906],{"type":30,"value":1837},{"type":25,"tag":109,"props":1908,"children":1909},{"style":293},[1910],{"type":30,"value":1290},{"type":25,"tag":109,"props":1912,"children":1913},{"style":282},[1914],{"type":30,"value":1915},"round",{"type":25,"tag":109,"props":1917,"children":1918},{"style":1650},[1919],{"type":30,"value":290},{"type":25,"tag":109,"props":1921,"children":1922},{"style":995},[1923],{"type":30,"value":1924},"clamped",{"type":25,"tag":109,"props":1926,"children":1927},{"style":941},[1928],{"type":30,"value":1929}," *",{"type":25,"tag":109,"props":1931,"children":1932},{"style":1034},[1933],{"type":30,"value":1934}," 2",{"type":25,"tag":109,"props":1936,"children":1937},{"style":1650},[1938],{"type":30,"value":1794},{"type":25,"tag":109,"props":1940,"children":1941},{"style":941},[1942],{"type":30,"value":1943},"/",{"type":25,"tag":109,"props":1945,"children":1946},{"style":1034},[1947],{"type":30,"value":1948}," 2\n",{"type":25,"tag":109,"props":1950,"children":1952},{"class":111,"line":1951},62,[1953],{"type":25,"tag":109,"props":1954,"children":1955},{"style":293},[1956],{"type":30,"value":1957},"}\n",{"type":25,"tag":109,"props":1959,"children":1961},{"class":111,"line":1960},63,[1962],{"type":25,"tag":109,"props":1963,"children":1964},{"emptyLinePlaceholder":599},[1965],{"type":30,"value":602},{"type":25,"tag":109,"props":1967,"children":1969},{"class":111,"line":1968},64,[1970,1974,1979,1983,1988,1992,1997,2001,2006,2010,2014,2018,2022,2026,2030],{"type":25,"tag":109,"props":1971,"children":1972},{"style":929},[1973],{"type":30,"value":932},{"type":25,"tag":109,"props":1975,"children":1976},{"style":935},[1977],{"type":30,"value":1978}," currentRating",{"type":25,"tag":109,"props":1980,"children":1981},{"style":941},[1982],{"type":30,"value":944},{"type":25,"tag":109,"props":1984,"children":1985},{"style":282},[1986],{"type":30,"value":1987}," ref",{"type":25,"tag":109,"props":1989,"children":1990},{"style":116},[1991],{"type":30,"value":290},{"type":25,"tag":109,"props":1993,"children":1994},{"style":282},[1995],{"type":30,"value":1996},"normalizeRating",{"type":25,"tag":109,"props":1998,"children":1999},{"style":116},[2000],{"type":30,"value":290},{"type":25,"tag":109,"props":2002,"children":2003},{"style":935},[2004],{"type":30,"value":2005},"props",{"type":25,"tag":109,"props":2007,"children":2008},{"style":293},[2009],{"type":30,"value":1290},{"type":25,"tag":109,"props":2011,"children":2012},{"style":995},[2013],{"type":30,"value":1603},{"type":25,"tag":109,"props":2015,"children":2016},{"style":293},[2017],{"type":30,"value":1003},{"type":25,"tag":109,"props":2019,"children":2020},{"style":935},[2021],{"type":30,"value":938},{"type":25,"tag":109,"props":2023,"children":2024},{"style":293},[2025],{"type":30,"value":1290},{"type":25,"tag":109,"props":2027,"children":2028},{"style":995},[2029],{"type":30,"value":1690},{"type":25,"tag":109,"props":2031,"children":2032},{"style":116},[2033],{"type":30,"value":1893},{"type":25,"tag":109,"props":2035,"children":2037},{"class":111,"line":2036},65,[2038],{"type":25,"tag":109,"props":2039,"children":2040},{"emptyLinePlaceholder":599},[2041],{"type":30,"value":602},{"type":25,"tag":109,"props":2043,"children":2045},{"class":111,"line":2044},66,[2046,2051],{"type":25,"tag":109,"props":2047,"children":2048},{"style":282},[2049],{"type":30,"value":2050},"watch",{"type":25,"tag":109,"props":2052,"children":2053},{"style":116},[2054],{"type":30,"value":2055},"(\n",{"type":25,"tag":109,"props":2057,"children":2059},{"class":111,"line":2058},67,[2060,2065,2069,2073,2077,2081,2085,2089,2093,2097,2101,2105],{"type":25,"tag":109,"props":2061,"children":2062},{"style":293},[2063],{"type":30,"value":2064},"  ()",{"type":25,"tag":109,"props":2066,"children":2067},{"style":929},[2068],{"type":30,"value":1231},{"type":25,"tag":109,"props":2070,"children":2071},{"style":116},[2072],{"type":30,"value":315},{"type":25,"tag":109,"props":2074,"children":2075},{"style":935},[2076],{"type":30,"value":2005},{"type":25,"tag":109,"props":2078,"children":2079},{"style":293},[2080],{"type":30,"value":1290},{"type":25,"tag":109,"props":2082,"children":2083},{"style":995},[2084],{"type":30,"value":1603},{"type":25,"tag":109,"props":2086,"children":2087},{"style":293},[2088],{"type":30,"value":1003},{"type":25,"tag":109,"props":2090,"children":2091},{"style":935},[2092],{"type":30,"value":938},{"type":25,"tag":109,"props":2094,"children":2095},{"style":293},[2096],{"type":30,"value":1290},{"type":25,"tag":109,"props":2098,"children":2099},{"style":995},[2100],{"type":30,"value":1690},{"type":25,"tag":109,"props":2102,"children":2103},{"style":116},[2104],{"type":30,"value":1013},{"type":25,"tag":109,"props":2106,"children":2107},{"style":293},[2108],{"type":30,"value":1018},{"type":25,"tag":109,"props":2110,"children":2112},{"class":111,"line":2111},68,[2113,2118,2122,2126,2130,2135,2139],{"type":25,"tag":109,"props":2114,"children":2115},{"style":293},[2116],{"type":30,"value":2117},"  ([",{"type":25,"tag":109,"props":2119,"children":2120},{"style":1218},[2121],{"type":30,"value":1603},{"type":25,"tag":109,"props":2123,"children":2124},{"style":293},[2125],{"type":30,"value":1003},{"type":25,"tag":109,"props":2127,"children":2128},{"style":1218},[2129],{"type":30,"value":1612},{"type":25,"tag":109,"props":2131,"children":2132},{"style":293},[2133],{"type":30,"value":2134},"])",{"type":25,"tag":109,"props":2136,"children":2137},{"style":929},[2138],{"type":30,"value":1231},{"type":25,"tag":109,"props":2140,"children":2141},{"style":293},[2142],{"type":30,"value":975},{"type":25,"tag":109,"props":2144,"children":2146},{"class":111,"line":2145},69,[2147,2152,2156,2160,2164,2168,2172,2176,2180,2184],{"type":25,"tag":109,"props":2148,"children":2149},{"style":935},[2150],{"type":30,"value":2151},"    currentRating",{"type":25,"tag":109,"props":2153,"children":2154},{"style":293},[2155],{"type":30,"value":1290},{"type":25,"tag":109,"props":2157,"children":2158},{"style":995},[2159],{"type":30,"value":1221},{"type":25,"tag":109,"props":2161,"children":2162},{"style":941},[2163],{"type":30,"value":944},{"type":25,"tag":109,"props":2165,"children":2166},{"style":282},[2167],{"type":30,"value":1590},{"type":25,"tag":109,"props":2169,"children":2170},{"style":1650},[2171],{"type":30,"value":290},{"type":25,"tag":109,"props":2173,"children":2174},{"style":995},[2175],{"type":30,"value":1603},{"type":25,"tag":109,"props":2177,"children":2178},{"style":293},[2179],{"type":30,"value":1003},{"type":25,"tag":109,"props":2181,"children":2182},{"style":995},[2183],{"type":30,"value":1612},{"type":25,"tag":109,"props":2185,"children":2186},{"style":1650},[2187],{"type":30,"value":348},{"type":25,"tag":109,"props":2189,"children":2191},{"class":111,"line":2190},70,[2192],{"type":25,"tag":109,"props":2193,"children":2194},{"style":293},[2195],{"type":30,"value":1503},{"type":25,"tag":109,"props":2197,"children":2199},{"class":111,"line":2198},71,[2200],{"type":25,"tag":109,"props":2201,"children":2202},{"style":116},[2203],{"type":30,"value":348},{"type":25,"tag":109,"props":2205,"children":2207},{"class":111,"line":2206},72,[2208],{"type":25,"tag":109,"props":2209,"children":2210},{"emptyLinePlaceholder":599},[2211],{"type":30,"value":602},{"type":25,"tag":109,"props":2213,"children":2215},{"class":111,"line":2214},73,[2216,2220,2225,2229,2234,2238,2243,2247,2251,2255,2260,2264,2268,2272,2276,2280,2284],{"type":25,"tag":109,"props":2217,"children":2218},{"style":929},[2219],{"type":30,"value":932},{"type":25,"tag":109,"props":2221,"children":2222},{"style":935},[2223],{"type":30,"value":2224}," displayRating",{"type":25,"tag":109,"props":2226,"children":2227},{"style":941},[2228],{"type":30,"value":944},{"type":25,"tag":109,"props":2230,"children":2231},{"style":282},[2232],{"type":30,"value":2233}," computed",{"type":25,"tag":109,"props":2235,"children":2236},{"style":116},[2237],{"type":30,"value":290},{"type":25,"tag":109,"props":2239,"children":2240},{"style":293},[2241],{"type":30,"value":2242},"()",{"type":25,"tag":109,"props":2244,"children":2245},{"style":929},[2246],{"type":30,"value":1231},{"type":25,"tag":109,"props":2248,"children":2249},{"style":282},[2250],{"type":30,"value":1590},{"type":25,"tag":109,"props":2252,"children":2253},{"style":116},[2254],{"type":30,"value":290},{"type":25,"tag":109,"props":2256,"children":2257},{"style":935},[2258],{"type":30,"value":2259},"currentRating",{"type":25,"tag":109,"props":2261,"children":2262},{"style":293},[2263],{"type":30,"value":1290},{"type":25,"tag":109,"props":2265,"children":2266},{"style":995},[2267],{"type":30,"value":1221},{"type":25,"tag":109,"props":2269,"children":2270},{"style":293},[2271],{"type":30,"value":1003},{"type":25,"tag":109,"props":2273,"children":2274},{"style":935},[2275],{"type":30,"value":938},{"type":25,"tag":109,"props":2277,"children":2278},{"style":293},[2279],{"type":30,"value":1290},{"type":25,"tag":109,"props":2281,"children":2282},{"style":995},[2283],{"type":30,"value":1690},{"type":25,"tag":109,"props":2285,"children":2286},{"style":116},[2287],{"type":30,"value":1893},{"type":25,"tag":109,"props":2289,"children":2291},{"class":111,"line":2290},74,[2292],{"type":25,"tag":109,"props":2293,"children":2294},{"emptyLinePlaceholder":599},[2295],{"type":30,"value":602},{"type":25,"tag":109,"props":2297,"children":2299},{"class":111,"line":2298},75,[2300,2304,2309,2313,2317,2321,2325,2329],{"type":25,"tag":109,"props":2301,"children":2302},{"style":929},[2303],{"type":30,"value":932},{"type":25,"tag":109,"props":2305,"children":2306},{"style":1587},[2307],{"type":30,"value":2308}," handleRateUpdate",{"type":25,"tag":109,"props":2310,"children":2311},{"style":941},[2312],{"type":30,"value":944},{"type":25,"tag":109,"props":2314,"children":2315},{"style":293},[2316],{"type":30,"value":1215},{"type":25,"tag":109,"props":2318,"children":2319},{"style":1218},[2320],{"type":30,"value":1221},{"type":25,"tag":109,"props":2322,"children":2323},{"style":293},[2324],{"type":30,"value":1226},{"type":25,"tag":109,"props":2326,"children":2327},{"style":929},[2328],{"type":30,"value":1231},{"type":25,"tag":109,"props":2330,"children":2331},{"style":293},[2332],{"type":30,"value":975},{"type":25,"tag":109,"props":2334,"children":2336},{"class":111,"line":2335},76,[2337,2341,2346,2350,2354,2358,2362,2366,2370,2374,2378],{"type":25,"tag":109,"props":2338,"children":2339},{"style":929},[2340],{"type":30,"value":1633},{"type":25,"tag":109,"props":2342,"children":2343},{"style":935},[2344],{"type":30,"value":2345}," nextValue",{"type":25,"tag":109,"props":2347,"children":2348},{"style":941},[2349],{"type":30,"value":944},{"type":25,"tag":109,"props":2351,"children":2352},{"style":282},[2353],{"type":30,"value":1590},{"type":25,"tag":109,"props":2355,"children":2356},{"style":1650},[2357],{"type":30,"value":290},{"type":25,"tag":109,"props":2359,"children":2360},{"style":995},[2361],{"type":30,"value":1221},{"type":25,"tag":109,"props":2363,"children":2364},{"style":293},[2365],{"type":30,"value":1003},{"type":25,"tag":109,"props":2367,"children":2368},{"style":935},[2369],{"type":30,"value":938},{"type":25,"tag":109,"props":2371,"children":2372},{"style":293},[2373],{"type":30,"value":1290},{"type":25,"tag":109,"props":2375,"children":2376},{"style":995},[2377],{"type":30,"value":1690},{"type":25,"tag":109,"props":2379,"children":2380},{"style":1650},[2381],{"type":30,"value":348},{"type":25,"tag":109,"props":2383,"children":2385},{"class":111,"line":2384},77,[2386,2391,2395,2399,2403],{"type":25,"tag":109,"props":2387,"children":2388},{"style":935},[2389],{"type":30,"value":2390},"  currentRating",{"type":25,"tag":109,"props":2392,"children":2393},{"style":293},[2394],{"type":30,"value":1290},{"type":25,"tag":109,"props":2396,"children":2397},{"style":995},[2398],{"type":30,"value":1221},{"type":25,"tag":109,"props":2400,"children":2401},{"style":941},[2402],{"type":30,"value":944},{"type":25,"tag":109,"props":2404,"children":2405},{"style":995},[2406],{"type":30,"value":2407}," nextValue\n",{"type":25,"tag":109,"props":2409,"children":2411},{"class":111,"line":2410},78,[2412],{"type":25,"tag":109,"props":2413,"children":2414},{"emptyLinePlaceholder":599},[2415],{"type":30,"value":602},{"type":25,"tag":109,"props":2417,"children":2419},{"class":111,"line":2418},79,[2420,2424,2428,2433,2437,2441,2445,2449],{"type":25,"tag":109,"props":2421,"children":2422},{"style":271},[2423],{"type":30,"value":1711},{"type":25,"tag":109,"props":2425,"children":2426},{"style":1650},[2427],{"type":30,"value":1215},{"type":25,"tag":109,"props":2429,"children":2430},{"style":941},[2431],{"type":30,"value":2432},"!",{"type":25,"tag":109,"props":2434,"children":2435},{"style":935},[2436],{"type":30,"value":2005},{"type":25,"tag":109,"props":2438,"children":2439},{"style":293},[2440],{"type":30,"value":1290},{"type":25,"tag":109,"props":2442,"children":2443},{"style":995},[2444],{"type":30,"value":716},{"type":25,"tag":109,"props":2446,"children":2447},{"style":1650},[2448],{"type":30,"value":1794},{"type":25,"tag":109,"props":2450,"children":2451},{"style":293},[2452],{"type":30,"value":296},{"type":25,"tag":109,"props":2454,"children":2456},{"class":111,"line":2455},80,[2457,2462,2466,2470,2474,2478,2482,2486],{"type":25,"tag":109,"props":2458,"children":2459},{"style":282},[2460],{"type":30,"value":2461},"    emit",{"type":25,"tag":109,"props":2463,"children":2464},{"style":1650},[2465],{"type":30,"value":290},{"type":25,"tag":109,"props":2467,"children":2468},{"style":318},[2469],{"type":30,"value":321},{"type":25,"tag":109,"props":2471,"children":2472},{"style":225},[2473],{"type":30,"value":1559},{"type":25,"tag":109,"props":2475,"children":2476},{"style":318},[2477],{"type":30,"value":321},{"type":25,"tag":109,"props":2479,"children":2480},{"style":293},[2481],{"type":30,"value":1003},{"type":25,"tag":109,"props":2483,"children":2484},{"style":995},[2485],{"type":30,"value":2345},{"type":25,"tag":109,"props":2487,"children":2488},{"style":1650},[2489],{"type":30,"value":348},{"type":25,"tag":109,"props":2491,"children":2493},{"class":111,"line":2492},81,[2494],{"type":25,"tag":109,"props":2495,"children":2496},{"style":293},[2497],{"type":30,"value":1503},{"type":25,"tag":109,"props":2499,"children":2501},{"class":111,"line":2500},82,[2502],{"type":25,"tag":109,"props":2503,"children":2504},{"style":293},[2505],{"type":30,"value":1957},{"type":25,"tag":109,"props":2507,"children":2509},{"class":111,"line":2508},83,[2510],{"type":25,"tag":109,"props":2511,"children":2512},{"emptyLinePlaceholder":599},[2513],{"type":30,"value":602},{"type":25,"tag":109,"props":2515,"children":2517},{"class":111,"line":2516},84,[2518],{"type":25,"tag":109,"props":2519,"children":2520},{"style":1194},[2521],{"type":30,"value":2522},"// 映射 size 到 n-rate 的尺寸\n",{"type":25,"tag":109,"props":2524,"children":2526},{"class":111,"line":2525},85,[2527,2531,2536,2540,2544,2548,2552,2556],{"type":25,"tag":109,"props":2528,"children":2529},{"style":929},[2530],{"type":30,"value":932},{"type":25,"tag":109,"props":2532,"children":2533},{"style":935},[2534],{"type":30,"value":2535}," rateSize",{"type":25,"tag":109,"props":2537,"children":2538},{"style":941},[2539],{"type":30,"value":944},{"type":25,"tag":109,"props":2541,"children":2542},{"style":282},[2543],{"type":30,"value":2233},{"type":25,"tag":109,"props":2545,"children":2546},{"style":116},[2547],{"type":30,"value":290},{"type":25,"tag":109,"props":2549,"children":2550},{"style":293},[2551],{"type":30,"value":2242},{"type":25,"tag":109,"props":2553,"children":2554},{"style":929},[2555],{"type":30,"value":1231},{"type":25,"tag":109,"props":2557,"children":2558},{"style":293},[2559],{"type":30,"value":975},{"type":25,"tag":109,"props":2561,"children":2563},{"class":111,"line":2562},86,[2564,2568,2573,2577],{"type":25,"tag":109,"props":2565,"children":2566},{"style":929},[2567],{"type":30,"value":1633},{"type":25,"tag":109,"props":2569,"children":2570},{"style":935},[2571],{"type":30,"value":2572}," sizeMap",{"type":25,"tag":109,"props":2574,"children":2575},{"style":941},[2576],{"type":30,"value":944},{"type":25,"tag":109,"props":2578,"children":2579},{"style":293},[2580],{"type":30,"value":975},{"type":25,"tag":109,"props":2582,"children":2584},{"class":111,"line":2583},87,[2585,2590,2594,2599],{"type":25,"tag":109,"props":2586,"children":2587},{"style":302},[2588],{"type":30,"value":2589},"    small",{"type":25,"tag":109,"props":2591,"children":2592},{"style":293},[2593],{"type":30,"value":310},{"type":25,"tag":109,"props":2595,"children":2596},{"style":1034},[2597],{"type":30,"value":2598}," 18",{"type":25,"tag":109,"props":2600,"children":2601},{"style":293},[2602],{"type":30,"value":1018},{"type":25,"tag":109,"props":2604,"children":2606},{"class":111,"line":2605},88,[2607,2612,2616,2621],{"type":25,"tag":109,"props":2608,"children":2609},{"style":302},[2610],{"type":30,"value":2611},"    medium",{"type":25,"tag":109,"props":2613,"children":2614},{"style":293},[2615],{"type":30,"value":310},{"type":25,"tag":109,"props":2617,"children":2618},{"style":1034},[2619],{"type":30,"value":2620}," 24",{"type":25,"tag":109,"props":2622,"children":2623},{"style":293},[2624],{"type":30,"value":1018},{"type":25,"tag":109,"props":2626,"children":2628},{"class":111,"line":2627},89,[2629,2634,2638],{"type":25,"tag":109,"props":2630,"children":2631},{"style":302},[2632],{"type":30,"value":2633},"    large",{"type":25,"tag":109,"props":2635,"children":2636},{"style":293},[2637],{"type":30,"value":310},{"type":25,"tag":109,"props":2639,"children":2640},{"style":1034},[2641],{"type":30,"value":2642}," 28\n",{"type":25,"tag":109,"props":2644,"children":2646},{"class":111,"line":2645},90,[2647],{"type":25,"tag":109,"props":2648,"children":2649},{"style":293},[2650],{"type":30,"value":1503},{"type":25,"tag":109,"props":2652,"children":2654},{"class":111,"line":2653},91,[2655,2659,2663,2668,2672,2676,2681,2686,2691],{"type":25,"tag":109,"props":2656,"children":2657},{"style":271},[2658],{"type":30,"value":1902},{"type":25,"tag":109,"props":2660,"children":2661},{"style":995},[2662],{"type":30,"value":2572},{"type":25,"tag":109,"props":2664,"children":2665},{"style":1650},[2666],{"type":30,"value":2667},"[",{"type":25,"tag":109,"props":2669,"children":2670},{"style":935},[2671],{"type":30,"value":2005},{"type":25,"tag":109,"props":2673,"children":2674},{"style":293},[2675],{"type":30,"value":1290},{"type":25,"tag":109,"props":2677,"children":2678},{"style":995},[2679],{"type":30,"value":2680},"size",{"type":25,"tag":109,"props":2682,"children":2683},{"style":1650},[2684],{"type":30,"value":2685},"] ",{"type":25,"tag":109,"props":2687,"children":2688},{"style":941},[2689],{"type":30,"value":2690},"||",{"type":25,"tag":109,"props":2692,"children":2693},{"style":1034},[2694],{"type":30,"value":2695}," 24\n",{"type":25,"tag":109,"props":2697,"children":2699},{"class":111,"line":2698},92,[2700,2704],{"type":25,"tag":109,"props":2701,"children":2702},{"style":293},[2703],{"type":30,"value":343},{"type":25,"tag":109,"props":2705,"children":2706},{"style":116},[2707],{"type":30,"value":348},{"type":25,"tag":109,"props":2709,"children":2711},{"class":111,"line":2710},93,[2712,2716,2720],{"type":25,"tag":109,"props":2713,"children":2714},{"style":293},[2715],{"type":30,"value":876},{"type":25,"tag":109,"props":2717,"children":2718},{"style":302},[2719],{"type":30,"value":905},{"type":25,"tag":109,"props":2721,"children":2722},{"style":293},[2723],{"type":30,"value":427},{"type":25,"tag":109,"props":2725,"children":2727},{"class":111,"line":2726},94,[2728],{"type":25,"tag":109,"props":2729,"children":2730},{"emptyLinePlaceholder":599},[2731],{"type":30,"value":602},{"type":25,"tag":109,"props":2733,"children":2735},{"class":111,"line":2734},95,[2736,2740,2745,2750],{"type":25,"tag":109,"props":2737,"children":2738},{"style":293},[2739],{"type":30,"value":418},{"type":25,"tag":109,"props":2741,"children":2742},{"style":302},[2743],{"type":30,"value":2744},"style",{"type":25,"tag":109,"props":2746,"children":2747},{"style":443},[2748],{"type":30,"value":2749}," scoped",{"type":25,"tag":109,"props":2751,"children":2752},{"style":293},[2753],{"type":30,"value":427},{"type":25,"tag":109,"props":2755,"children":2756},{"class":111,"line":4},[2757,2762,2768],{"type":25,"tag":109,"props":2758,"children":2760},{"style":2759},"--shiki-default:#89DDFF;--shiki-dark:#D19A66",[2761],{"type":30,"value":1290},{"type":25,"tag":109,"props":2763,"children":2765},{"style":2764},"--shiki-default:#FFCB6B;--shiki-dark:#D19A66",[2766],{"type":30,"value":2767},"star-rating-mdc",{"type":25,"tag":109,"props":2769,"children":2770},{"style":293},[2771],{"type":30,"value":975},{"type":25,"tag":109,"props":2773,"children":2775},{"class":111,"line":2774},97,[2776,2782,2786,2792],{"type":25,"tag":109,"props":2777,"children":2779},{"style":2778},"--shiki-default:#B2CCD6;--shiki-dark:#ABB2BF",[2780],{"type":30,"value":2781},"  display",{"type":25,"tag":109,"props":2783,"children":2784},{"style":293},[2785],{"type":30,"value":310},{"type":25,"tag":109,"props":2787,"children":2789},{"style":2788},"--shiki-default:#EEFFFF;--shiki-dark:#D19A66",[2790],{"type":30,"value":2791}," block",{"type":25,"tag":109,"props":2793,"children":2794},{"style":293},[2795],{"type":30,"value":2796},";\n",{"type":25,"tag":109,"props":2798,"children":2800},{"class":111,"line":2799},98,[2801],{"type":25,"tag":109,"props":2802,"children":2803},{"style":293},[2804],{"type":30,"value":1957},{"type":25,"tag":109,"props":2806,"children":2808},{"class":111,"line":2807},99,[2809],{"type":25,"tag":109,"props":2810,"children":2811},{"emptyLinePlaceholder":599},[2812],{"type":30,"value":602},{"type":25,"tag":109,"props":2814,"children":2816},{"class":111,"line":2815},100,[2817,2821,2825],{"type":25,"tag":109,"props":2818,"children":2819},{"style":2759},[2820],{"type":30,"value":1290},{"type":25,"tag":109,"props":2822,"children":2823},{"style":2764},[2824],{"type":30,"value":498},{"type":25,"tag":109,"props":2826,"children":2827},{"style":293},[2828],{"type":30,"value":975},{"type":25,"tag":109,"props":2830,"children":2832},{"class":111,"line":2831},101,[2833,2837,2841,2846],{"type":25,"tag":109,"props":2834,"children":2835},{"style":2778},[2836],{"type":30,"value":2781},{"type":25,"tag":109,"props":2838,"children":2839},{"style":293},[2840],{"type":30,"value":310},{"type":25,"tag":109,"props":2842,"children":2843},{"style":2788},[2844],{"type":30,"value":2845}," inline-flex",{"type":25,"tag":109,"props":2847,"children":2848},{"style":293},[2849],{"type":30,"value":2796},{"type":25,"tag":109,"props":2851,"children":2853},{"class":111,"line":2852},102,[2854,2859,2863,2868],{"type":25,"tag":109,"props":2855,"children":2856},{"style":2778},[2857],{"type":30,"value":2858},"  align-items",{"type":25,"tag":109,"props":2860,"children":2861},{"style":293},[2862],{"type":30,"value":310},{"type":25,"tag":109,"props":2864,"children":2865},{"style":2788},[2866],{"type":30,"value":2867}," center",{"type":25,"tag":109,"props":2869,"children":2870},{"style":293},[2871],{"type":30,"value":2796},{"type":25,"tag":109,"props":2873,"children":2875},{"class":111,"line":2874},103,[2876,2881,2885,2890,2896],{"type":25,"tag":109,"props":2877,"children":2878},{"style":2778},[2879],{"type":30,"value":2880},"  gap",{"type":25,"tag":109,"props":2882,"children":2883},{"style":293},[2884],{"type":30,"value":310},{"type":25,"tag":109,"props":2886,"children":2887},{"style":1034},[2888],{"type":30,"value":2889}," 0.625",{"type":25,"tag":109,"props":2891,"children":2893},{"style":2892},"--shiki-default:#F78C6C;--shiki-dark:#E06C75",[2894],{"type":30,"value":2895},"rem",{"type":25,"tag":109,"props":2897,"children":2898},{"style":293},[2899],{"type":30,"value":2796},{"type":25,"tag":109,"props":2901,"children":2903},{"class":111,"line":2902},104,[2904,2909,2913,2918],{"type":25,"tag":109,"props":2905,"children":2906},{"style":2778},[2907],{"type":30,"value":2908},"  line-height",{"type":25,"tag":109,"props":2910,"children":2911},{"style":293},[2912],{"type":30,"value":310},{"type":25,"tag":109,"props":2914,"children":2915},{"style":1034},[2916],{"type":30,"value":2917}," 1",{"type":25,"tag":109,"props":2919,"children":2920},{"style":293},[2921],{"type":30,"value":2796},{"type":25,"tag":109,"props":2923,"children":2925},{"class":111,"line":2924},105,[2926],{"type":25,"tag":109,"props":2927,"children":2928},{"style":293},[2929],{"type":30,"value":1957},{"type":25,"tag":109,"props":2931,"children":2933},{"class":111,"line":2932},106,[2934],{"type":25,"tag":109,"props":2935,"children":2936},{"emptyLinePlaceholder":599},[2937],{"type":30,"value":602},{"type":25,"tag":109,"props":2939,"children":2941},{"class":111,"line":2940},107,[2942,2946,2951],{"type":25,"tag":109,"props":2943,"children":2944},{"style":2759},[2945],{"type":30,"value":1290},{"type":25,"tag":109,"props":2947,"children":2948},{"style":2764},[2949],{"type":30,"value":2950},"star-rating-label",{"type":25,"tag":109,"props":2952,"children":2953},{"style":293},[2954],{"type":30,"value":975},{"type":25,"tag":109,"props":2956,"children":2958},{"class":111,"line":2957},108,[2959,2963,2967,2971],{"type":25,"tag":109,"props":2960,"children":2961},{"style":2778},[2962],{"type":30,"value":2781},{"type":25,"tag":109,"props":2964,"children":2965},{"style":293},[2966],{"type":30,"value":310},{"type":25,"tag":109,"props":2968,"children":2969},{"style":2788},[2970],{"type":30,"value":2845},{"type":25,"tag":109,"props":2972,"children":2973},{"style":293},[2974],{"type":30,"value":2796},{"type":25,"tag":109,"props":2976,"children":2978},{"class":111,"line":2977},109,[2979,2983,2987,2991],{"type":25,"tag":109,"props":2980,"children":2981},{"style":2778},[2982],{"type":30,"value":2858},{"type":25,"tag":109,"props":2984,"children":2985},{"style":293},[2986],{"type":30,"value":310},{"type":25,"tag":109,"props":2988,"children":2989},{"style":2788},[2990],{"type":30,"value":2867},{"type":25,"tag":109,"props":2992,"children":2993},{"style":293},[2994],{"type":30,"value":2796},{"type":25,"tag":109,"props":2996,"children":2998},{"class":111,"line":2997},110,[2999,3004,3008,3013,3017],{"type":25,"tag":109,"props":3000,"children":3001},{"style":2778},[3002],{"type":30,"value":3003},"  font-size",{"type":25,"tag":109,"props":3005,"children":3006},{"style":293},[3007],{"type":30,"value":310},{"type":25,"tag":109,"props":3009,"children":3010},{"style":1034},[3011],{"type":30,"value":3012}," 0.95",{"type":25,"tag":109,"props":3014,"children":3015},{"style":2892},[3016],{"type":30,"value":2895},{"type":25,"tag":109,"props":3018,"children":3019},{"style":293},[3020],{"type":30,"value":2796},{"type":25,"tag":109,"props":3022,"children":3024},{"class":111,"line":3023},111,[3025,3029,3033,3037],{"type":25,"tag":109,"props":3026,"children":3027},{"style":2778},[3028],{"type":30,"value":2908},{"type":25,"tag":109,"props":3030,"children":3031},{"style":293},[3032],{"type":30,"value":310},{"type":25,"tag":109,"props":3034,"children":3035},{"style":1034},[3036],{"type":30,"value":2917},{"type":25,"tag":109,"props":3038,"children":3039},{"style":293},[3040],{"type":30,"value":2796},{"type":25,"tag":109,"props":3042,"children":3044},{"class":111,"line":3043},112,[3045],{"type":25,"tag":109,"props":3046,"children":3047},{"style":293},[3048],{"type":30,"value":1957},{"type":25,"tag":109,"props":3050,"children":3052},{"class":111,"line":3051},113,[3053],{"type":25,"tag":109,"props":3054,"children":3055},{"emptyLinePlaceholder":599},[3056],{"type":30,"value":602},{"type":25,"tag":109,"props":3058,"children":3060},{"class":111,"line":3059},114,[3061,3065,3070],{"type":25,"tag":109,"props":3062,"children":3063},{"style":2759},[3064],{"type":30,"value":1290},{"type":25,"tag":109,"props":3066,"children":3067},{"style":2764},[3068],{"type":30,"value":3069},"star-rating-score",{"type":25,"tag":109,"props":3071,"children":3072},{"style":293},[3073],{"type":30,"value":975},{"type":25,"tag":109,"props":3075,"children":3077},{"class":111,"line":3076},115,[3078,3082,3086,3090],{"type":25,"tag":109,"props":3079,"children":3080},{"style":2778},[3081],{"type":30,"value":2781},{"type":25,"tag":109,"props":3083,"children":3084},{"style":293},[3085],{"type":30,"value":310},{"type":25,"tag":109,"props":3087,"children":3088},{"style":2788},[3089],{"type":30,"value":2845},{"type":25,"tag":109,"props":3091,"children":3092},{"style":293},[3093],{"type":30,"value":2796},{"type":25,"tag":109,"props":3095,"children":3097},{"class":111,"line":3096},116,[3098,3102,3106,3110],{"type":25,"tag":109,"props":3099,"children":3100},{"style":2778},[3101],{"type":30,"value":2858},{"type":25,"tag":109,"props":3103,"children":3104},{"style":293},[3105],{"type":30,"value":310},{"type":25,"tag":109,"props":3107,"children":3108},{"style":2788},[3109],{"type":30,"value":2867},{"type":25,"tag":109,"props":3111,"children":3112},{"style":293},[3113],{"type":30,"value":2796},{"type":25,"tag":109,"props":3115,"children":3117},{"class":111,"line":3116},117,[3118,3122,3126,3131,3135],{"type":25,"tag":109,"props":3119,"children":3120},{"style":2778},[3121],{"type":30,"value":3003},{"type":25,"tag":109,"props":3123,"children":3124},{"style":293},[3125],{"type":30,"value":310},{"type":25,"tag":109,"props":3127,"children":3128},{"style":1034},[3129],{"type":30,"value":3130}," 0.85",{"type":25,"tag":109,"props":3132,"children":3133},{"style":2892},[3134],{"type":30,"value":2895},{"type":25,"tag":109,"props":3136,"children":3137},{"style":293},[3138],{"type":30,"value":2796},{"type":25,"tag":109,"props":3140,"children":3142},{"class":111,"line":3141},118,[3143,3147,3151,3155],{"type":25,"tag":109,"props":3144,"children":3145},{"style":2778},[3146],{"type":30,"value":2908},{"type":25,"tag":109,"props":3148,"children":3149},{"style":293},[3150],{"type":30,"value":310},{"type":25,"tag":109,"props":3152,"children":3153},{"style":1034},[3154],{"type":30,"value":2917},{"type":25,"tag":109,"props":3156,"children":3157},{"style":293},[3158],{"type":30,"value":2796},{"type":25,"tag":109,"props":3160,"children":3162},{"class":111,"line":3161},119,[3163],{"type":25,"tag":109,"props":3164,"children":3165},{"style":293},[3166],{"type":30,"value":1957},{"type":25,"tag":109,"props":3168,"children":3170},{"class":111,"line":3169},120,[3171],{"type":25,"tag":109,"props":3172,"children":3173},{"emptyLinePlaceholder":599},[3174],{"type":30,"value":602},{"type":25,"tag":109,"props":3176,"children":3178},{"class":111,"line":3177},121,[3179],{"type":25,"tag":109,"props":3180,"children":3181},{"style":1194},[3182],{"type":30,"value":3183},"/* :deep(.star-rating-rate.n-rate) {\n",{"type":25,"tag":109,"props":3185,"children":3187},{"class":111,"line":3186},122,[3188],{"type":25,"tag":109,"props":3189,"children":3190},{"style":1194},[3191],{"type":30,"value":3192},"  display: inline-flex;\n",{"type":25,"tag":109,"props":3194,"children":3196},{"class":111,"line":3195},123,[3197],{"type":25,"tag":109,"props":3198,"children":3199},{"style":1194},[3200],{"type":30,"value":3201},"  align-items: center;\n",{"type":25,"tag":109,"props":3203,"children":3205},{"class":111,"line":3204},124,[3206],{"type":25,"tag":109,"props":3207,"children":3208},{"style":1194},[3209],{"type":30,"value":3210},"  line-height: 1;\n",{"type":25,"tag":109,"props":3212,"children":3214},{"class":111,"line":3213},125,[3215],{"type":25,"tag":109,"props":3216,"children":3217},{"style":1194},[3218],{"type":30,"value":1957},{"type":25,"tag":109,"props":3220,"children":3222},{"class":111,"line":3221},126,[3223],{"type":25,"tag":109,"props":3224,"children":3225},{"emptyLinePlaceholder":599},[3226],{"type":30,"value":602},{"type":25,"tag":109,"props":3228,"children":3230},{"class":111,"line":3229},127,[3231],{"type":25,"tag":109,"props":3232,"children":3233},{"style":1194},[3234],{"type":30,"value":3235},":deep(.star-rating-rate .n-rate__item) {\n",{"type":25,"tag":109,"props":3237,"children":3239},{"class":111,"line":3238},128,[3240],{"type":25,"tag":109,"props":3241,"children":3242},{"style":1194},[3243],{"type":30,"value":3192},{"type":25,"tag":109,"props":3245,"children":3247},{"class":111,"line":3246},129,[3248],{"type":25,"tag":109,"props":3249,"children":3250},{"style":1194},[3251],{"type":30,"value":3201},{"type":25,"tag":109,"props":3253,"children":3255},{"class":111,"line":3254},130,[3256],{"type":25,"tag":109,"props":3257,"children":3258},{"style":1194},[3259],{"type":30,"value":3260},"} */\n",{"type":25,"tag":109,"props":3262,"children":3264},{"class":111,"line":3263},131,[3265,3269,3273],{"type":25,"tag":109,"props":3266,"children":3267},{"style":293},[3268],{"type":30,"value":876},{"type":25,"tag":109,"props":3270,"children":3271},{"style":302},[3272],{"type":30,"value":2744},{"type":25,"tag":109,"props":3274,"children":3275},{"style":293},[3276],{"type":30,"value":427},{"type":25,"tag":26,"props":3278,"children":3279},{},[3280],{"type":30,"value":3281},"然后只要在MD文档中写入：",{"type":25,"tag":98,"props":3283,"children":3285},{"className":100,"code":3284,"language":102,"meta":19,"style":19},"::star-rating{rating=\"4\" maxStars=\"5\" label=\"推荐指数\" showScore}\n::\n\n",[3286],{"type":25,"tag":105,"props":3287,"children":3288},{"__ignoreMap":19},[3289,3297],{"type":25,"tag":109,"props":3290,"children":3291},{"class":111,"line":112},[3292],{"type":25,"tag":109,"props":3293,"children":3294},{"style":116},[3295],{"type":30,"value":3296},"::star-rating{rating=\"4\" maxStars=\"5\" label=\"推荐指数\" showScore}\n",{"type":25,"tag":109,"props":3298,"children":3299},{"class":111,"line":122},[3300],{"type":25,"tag":109,"props":3301,"children":3302},{"style":116},[3303],{"type":30,"value":158},{"type":25,"tag":3305,"props":3306,"children":3310},"star-rating",{":show-score":742,"label":3307,"max-stars":3308,"rating":3309,"show-score":19},"推荐指数","5","4",[],{"type":25,"tag":87,"props":3312,"children":3314},{"id":3313},"_2-在-markdown-中使用它",[3315],{"type":30,"value":3316},"2. 在 Markdown 中使用它",{"type":25,"tag":26,"props":3318,"children":3319},{},[3320,3322,3328],{"type":30,"value":3321},"在你的 ",{"type":25,"tag":105,"props":3323,"children":3325},{"className":3324},[],[3326],{"type":30,"value":3327},".md",{"type":30,"value":3329}," 文件中，你可以使用类似 YAML 的语法传递复杂的 Props：",{"type":25,"tag":98,"props":3331,"children":3333},{"className":100,"code":3332,"language":102,"meta":19,"style":19},"::info-card{type=\"warning\" icon=\"⚠️\"}\n#title\n注意：这是一个动态博客！\n\n这里的内容会自动填充到默认的插槽中。\n你甚至可以在这里继续写 **Markdown** 语法。\n::\n",[3334],{"type":25,"tag":105,"props":3335,"children":3336},{"__ignoreMap":19},[3337,3345,3353,3361,3368,3376,3401],{"type":25,"tag":109,"props":3338,"children":3339},{"class":111,"line":112},[3340],{"type":25,"tag":109,"props":3341,"children":3342},{"style":116},[3343],{"type":30,"value":3344},"::info-card{type=\"warning\" icon=\"⚠️\"}\n",{"type":25,"tag":109,"props":3346,"children":3347},{"class":111,"line":122},[3348],{"type":25,"tag":109,"props":3349,"children":3350},{"style":116},[3351],{"type":30,"value":3352},"#title\n",{"type":25,"tag":109,"props":3354,"children":3355},{"class":111,"line":152},[3356],{"type":25,"tag":109,"props":3357,"children":3358},{"style":116},[3359],{"type":30,"value":3360},"注意：这是一个动态博客！\n",{"type":25,"tag":109,"props":3362,"children":3363},{"class":111,"line":509},[3364],{"type":25,"tag":109,"props":3365,"children":3366},{"emptyLinePlaceholder":599},[3367],{"type":30,"value":602},{"type":25,"tag":109,"props":3369,"children":3370},{"class":111,"line":569},[3371],{"type":25,"tag":109,"props":3372,"children":3373},{"style":116},[3374],{"type":30,"value":3375},"这里的内容会自动填充到默认的插槽中。\n",{"type":25,"tag":109,"props":3377,"children":3378},{"class":111,"line":578},[3379,3384,3388,3392,3396],{"type":25,"tag":109,"props":3380,"children":3381},{"style":116},[3382],{"type":30,"value":3383},"你甚至可以在这里继续写 ",{"type":25,"tag":109,"props":3385,"children":3386},{"style":131},[3387],{"type":30,"value":134},{"type":25,"tag":109,"props":3389,"children":3390},{"style":137},[3391],{"type":30,"value":140},{"type":25,"tag":109,"props":3393,"children":3394},{"style":131},[3395],{"type":30,"value":134},{"type":25,"tag":109,"props":3397,"children":3398},{"style":116},[3399],{"type":30,"value":3400}," 语法。\n",{"type":25,"tag":109,"props":3402,"children":3403},{"class":111,"line":595},[3404],{"type":25,"tag":109,"props":3405,"children":3406},{"style":116},[3407],{"type":30,"value":158},{"type":25,"tag":50,"props":3409,"children":3410},{},[],{"type":25,"tag":54,"props":3412,"children":3414},{"id":3413},"第三步进阶打造真动态博客",[3415],{"type":30,"value":3416},"第三步：进阶——打造“真·动态”博客",{"type":25,"tag":26,"props":3418,"children":3419},{},[3420,3422,3427],{"type":30,"value":3421},"简单的 UI 组件只是开始，MDC 真正的威力在于",{"type":25,"tag":37,"props":3423,"children":3424},{},[3425],{"type":30,"value":3426},"数据交互",{"type":30,"value":3428},"。",{"type":25,"tag":87,"props":3430,"children":3432},{"id":3431},"场景一嵌入视频",[3433],{"type":30,"value":3434},"场景一：嵌入视频",{"type":25,"tag":26,"props":3436,"children":3437},{},[3438,3440,3446],{"type":30,"value":3439},"你可以创建一个 ",{"type":25,"tag":105,"props":3441,"children":3443},{"className":3442},[],[3444],{"type":30,"value":3445},"Video",{"type":30,"value":3447}," 组件，通过链接直接在博客中嵌入视频",{"type":25,"tag":98,"props":3449,"children":3451},{"className":100,"code":3450,"language":102,"meta":19,"style":19},"\n\n::web-embed{url=\"https://www.bilibili.com/video/BV1qM4y1B7Kr\" aspectRatio=\"16/9\"}\n::\n\n\n\n",[3452],{"type":25,"tag":105,"props":3453,"children":3454},{"__ignoreMap":19},[3455,3462,3469,3477],{"type":25,"tag":109,"props":3456,"children":3457},{"class":111,"line":112},[3458],{"type":25,"tag":109,"props":3459,"children":3460},{"emptyLinePlaceholder":599},[3461],{"type":30,"value":602},{"type":25,"tag":109,"props":3463,"children":3464},{"class":111,"line":122},[3465],{"type":25,"tag":109,"props":3466,"children":3467},{"emptyLinePlaceholder":599},[3468],{"type":30,"value":602},{"type":25,"tag":109,"props":3470,"children":3471},{"class":111,"line":152},[3472],{"type":25,"tag":109,"props":3473,"children":3474},{"style":116},[3475],{"type":30,"value":3476},"::web-embed{url=\"https://www.bilibili.com/video/BV1qM4y1B7Kr\" aspectRatio=\"16/9\"}\n",{"type":25,"tag":109,"props":3478,"children":3479},{"class":111,"line":509},[3480],{"type":25,"tag":109,"props":3481,"children":3482},{"style":116},[3483],{"type":30,"value":158},{"type":25,"tag":3485,"props":3486,"children":3489},"web-embed",{"aspect-ratio":3487,"url":3488},"16/9","https://www.bilibili.com/video/BV1qM4y1B7Kr",[],{"type":25,"tag":87,"props":3491,"children":3493},{"id":3492},"场景二代码实时预览",[3494],{"type":30,"value":3495},"场景二：代码实时预览",{"type":25,"tag":26,"props":3497,"children":3498},{},[3499,3501,3507,3509,3515],{"type":30,"value":3500},"通过自定义 ",{"type":25,"tag":105,"props":3502,"children":3504},{"className":3503},[],[3505],{"type":30,"value":3506},"ProsePre",{"type":30,"value":3508}," 组件（MDC 对 ",{"type":25,"tag":105,"props":3510,"children":3512},{"className":3511},[],[3513],{"type":30,"value":3514},"\u003Cpre>",{"type":30,"value":3516}," 标签的重写），你可以为博客的代码块添加“一键运行”或“复制按钮”功能。",{"type":25,"tag":26,"props":3518,"children":3519},{},[3520,3521,3527],{"type":30,"value":248},{"type":25,"tag":105,"props":3522,"children":3524},{"className":3523},[],[3525],{"type":30,"value":3526},"components/content/ProsePre.vue",{"type":30,"value":3528}," 中拦截默认的代码渲染，添加你的自定义逻辑。",{"type":25,"tag":98,"props":3530,"children":3532},{"className":100,"code":3531,"language":102,"meta":19,"style":19},"\n\n::code-playground{lang=\"javascript\" title=\"JavaScript 示例\" runnable}\n\nconsole.log('Hello World!')\n\n::\n\n\n",[3533],{"type":25,"tag":105,"props":3534,"children":3535},{"__ignoreMap":19},[3536,3543,3550,3558,3565,3573,3580],{"type":25,"tag":109,"props":3537,"children":3538},{"class":111,"line":112},[3539],{"type":25,"tag":109,"props":3540,"children":3541},{"emptyLinePlaceholder":599},[3542],{"type":30,"value":602},{"type":25,"tag":109,"props":3544,"children":3545},{"class":111,"line":122},[3546],{"type":25,"tag":109,"props":3547,"children":3548},{"emptyLinePlaceholder":599},[3549],{"type":30,"value":602},{"type":25,"tag":109,"props":3551,"children":3552},{"class":111,"line":152},[3553],{"type":25,"tag":109,"props":3554,"children":3555},{"style":116},[3556],{"type":30,"value":3557},"::code-playground{lang=\"javascript\" title=\"JavaScript 示例\" runnable}\n",{"type":25,"tag":109,"props":3559,"children":3560},{"class":111,"line":509},[3561],{"type":25,"tag":109,"props":3562,"children":3563},{"emptyLinePlaceholder":599},[3564],{"type":30,"value":602},{"type":25,"tag":109,"props":3566,"children":3567},{"class":111,"line":569},[3568],{"type":25,"tag":109,"props":3569,"children":3570},{"style":116},[3571],{"type":30,"value":3572},"console.log('Hello World!')\n",{"type":25,"tag":109,"props":3574,"children":3575},{"class":111,"line":578},[3576],{"type":25,"tag":109,"props":3577,"children":3578},{"emptyLinePlaceholder":599},[3579],{"type":30,"value":602},{"type":25,"tag":109,"props":3581,"children":3582},{"class":111,"line":595},[3583],{"type":25,"tag":109,"props":3584,"children":3585},{"style":116},[3586],{"type":30,"value":158},{"type":25,"tag":3588,"props":3589,"children":3592},"code-playground",{":runnable":742,"lang":3590,"runnable":19,"title":3591},"javascript","JavaScript 示例",[3593],{"type":25,"tag":26,"props":3594,"children":3595},{},[3596],{"type":30,"value":3597},"console.log('Hello World!')",{"type":25,"tag":87,"props":3599,"children":3601},{"id":3600},"场景三异步数据加载",[3602],{"type":30,"value":3603},"场景三：异步数据加载",{"type":25,"tag":26,"props":3605,"children":3606},{},[3607,3609,3614],{"type":30,"value":3608},"MDC 组件支持",{"type":25,"tag":37,"props":3610,"children":3611},{},[3612],{"type":30,"value":3613},"异步 Setup",{"type":30,"value":3615},"。这意味着你可以在组件内部直接调用 API。",{"type":25,"tag":98,"props":3617,"children":3619},{"className":404,"code":3618,"language":406,"meta":19,"style":19},"\u003C!-- components/content/GitHubStats.vue -->\n\u003Cscript setup>\nconst { data: repo } = await useFetch('https://api.github.com/repos/nuxt/nuxt')\n\u003C/script>\n\n\u003Ctemplate>\n  \u003Cdiv class=\"stats\">\n    Nuxt 框架目前有 {{ repo.stargazers_count }} 个 Star！\n  \u003C/div>\n\u003C/template>\n",[3620],{"type":25,"tag":105,"props":3621,"children":3622},{"__ignoreMap":19},[3623,3631,3650,3716,3731,3738,3753,3789,3797,3812],{"type":25,"tag":109,"props":3624,"children":3625},{"class":111,"line":112},[3626],{"type":25,"tag":109,"props":3627,"children":3628},{"style":1194},[3629],{"type":30,"value":3630},"\u003C!-- components/content/GitHubStats.vue -->\n",{"type":25,"tag":109,"props":3632,"children":3633},{"class":111,"line":122},[3634,3638,3642,3646],{"type":25,"tag":109,"props":3635,"children":3636},{"style":293},[3637],{"type":30,"value":418},{"type":25,"tag":109,"props":3639,"children":3640},{"style":302},[3641],{"type":30,"value":905},{"type":25,"tag":109,"props":3643,"children":3644},{"style":443},[3645],{"type":30,"value":910},{"type":25,"tag":109,"props":3647,"children":3648},{"style":293},[3649],{"type":30,"value":427},{"type":25,"tag":109,"props":3651,"children":3652},{"class":111,"line":152},[3653,3657,3662,3667,3671,3676,3681,3685,3690,3695,3699,3703,3708,3712],{"type":25,"tag":109,"props":3654,"children":3655},{"style":929},[3656],{"type":30,"value":932},{"type":25,"tag":109,"props":3658,"children":3659},{"style":293},[3660],{"type":30,"value":3661}," {",{"type":25,"tag":109,"props":3663,"children":3664},{"style":302},[3665],{"type":30,"value":3666}," data",{"type":25,"tag":109,"props":3668,"children":3669},{"style":293},[3670],{"type":30,"value":310},{"type":25,"tag":109,"props":3672,"children":3673},{"style":935},[3674],{"type":30,"value":3675}," repo",{"type":25,"tag":109,"props":3677,"children":3678},{"style":293},[3679],{"type":30,"value":3680}," }",{"type":25,"tag":109,"props":3682,"children":3683},{"style":941},[3684],{"type":30,"value":944},{"type":25,"tag":109,"props":3686,"children":3687},{"style":271},[3688],{"type":30,"value":3689}," await",{"type":25,"tag":109,"props":3691,"children":3692},{"style":282},[3693],{"type":30,"value":3694}," useFetch",{"type":25,"tag":109,"props":3696,"children":3697},{"style":116},[3698],{"type":30,"value":290},{"type":25,"tag":109,"props":3700,"children":3701},{"style":318},[3702],{"type":30,"value":321},{"type":25,"tag":109,"props":3704,"children":3705},{"style":225},[3706],{"type":30,"value":3707},"https://api.github.com/repos/nuxt/nuxt",{"type":25,"tag":109,"props":3709,"children":3710},{"style":318},[3711],{"type":30,"value":321},{"type":25,"tag":109,"props":3713,"children":3714},{"style":116},[3715],{"type":30,"value":348},{"type":25,"tag":109,"props":3717,"children":3718},{"class":111,"line":509},[3719,3723,3727],{"type":25,"tag":109,"props":3720,"children":3721},{"style":293},[3722],{"type":30,"value":876},{"type":25,"tag":109,"props":3724,"children":3725},{"style":302},[3726],{"type":30,"value":905},{"type":25,"tag":109,"props":3728,"children":3729},{"style":293},[3730],{"type":30,"value":427},{"type":25,"tag":109,"props":3732,"children":3733},{"class":111,"line":569},[3734],{"type":25,"tag":109,"props":3735,"children":3736},{"emptyLinePlaceholder":599},[3737],{"type":30,"value":602},{"type":25,"tag":109,"props":3739,"children":3740},{"class":111,"line":578},[3741,3745,3749],{"type":25,"tag":109,"props":3742,"children":3743},{"style":293},[3744],{"type":30,"value":418},{"type":25,"tag":109,"props":3746,"children":3747},{"style":302},[3748],{"type":30,"value":173},{"type":25,"tag":109,"props":3750,"children":3751},{"style":293},[3752],{"type":30,"value":427},{"type":25,"tag":109,"props":3754,"children":3755},{"class":111,"line":595},[3756,3760,3764,3768,3772,3776,3781,3785],{"type":25,"tag":109,"props":3757,"children":3758},{"style":293},[3759],{"type":30,"value":435},{"type":25,"tag":109,"props":3761,"children":3762},{"style":302},[3763],{"type":30,"value":440},{"type":25,"tag":109,"props":3765,"children":3766},{"style":443},[3767],{"type":30,"value":446},{"type":25,"tag":109,"props":3769,"children":3770},{"style":293},[3771],{"type":30,"value":451},{"type":25,"tag":109,"props":3773,"children":3774},{"style":318},[3775],{"type":30,"value":456},{"type":25,"tag":109,"props":3777,"children":3778},{"style":225},[3779],{"type":30,"value":3780},"stats",{"type":25,"tag":109,"props":3782,"children":3783},{"style":318},[3784],{"type":30,"value":456},{"type":25,"tag":109,"props":3786,"children":3787},{"style":293},[3788],{"type":30,"value":427},{"type":25,"tag":109,"props":3790,"children":3791},{"class":111,"line":605},[3792],{"type":25,"tag":109,"props":3793,"children":3794},{"style":116},[3795],{"type":30,"value":3796},"    Nuxt 框架目前有 {{ repo.stargazers_count }} 个 Star！\n",{"type":25,"tag":109,"props":3798,"children":3799},{"class":111,"line":618},[3800,3804,3808],{"type":25,"tag":109,"props":3801,"children":3802},{"style":293},[3803],{"type":30,"value":859},{"type":25,"tag":109,"props":3805,"children":3806},{"style":302},[3807],{"type":30,"value":440},{"type":25,"tag":109,"props":3809,"children":3810},{"style":293},[3811],{"type":30,"value":427},{"type":25,"tag":109,"props":3813,"children":3814},{"class":111,"line":645},[3815,3819,3823],{"type":25,"tag":109,"props":3816,"children":3817},{"style":293},[3818],{"type":30,"value":876},{"type":25,"tag":109,"props":3820,"children":3821},{"style":302},[3822],{"type":30,"value":173},{"type":25,"tag":109,"props":3824,"children":3825},{"style":293},[3826],{"type":30,"value":427},{"type":25,"tag":3828,"props":3829,"children":3831},"github-card",{"repo":3830},"vuejs/core",[],{"type":25,"tag":50,"props":3833,"children":3834},{},[],{"type":25,"tag":54,"props":3836,"children":3838},{"id":3837},"为什么这种方式是博客的未来",[3839],{"type":30,"value":3840},"为什么这种方式是博客的未来？",{"type":25,"tag":3842,"props":3843,"children":3844},"ol",{},[3845,3864,3874,3884],{"type":25,"tag":3846,"props":3847,"children":3848},"li",{},[3849,3854,3856,3862],{"type":25,"tag":37,"props":3850,"children":3851},{},[3852],{"type":30,"value":3853},"写作体验回归",{"type":30,"value":3855},"：你依然在写简单的 Markdown，不需要在 ",{"type":25,"tag":105,"props":3857,"children":3859},{"className":3858},[],[3860],{"type":30,"value":3861},".vue",{"type":30,"value":3863}," 文件里处理繁琐的 HTML 结构。",{"type":25,"tag":3846,"props":3865,"children":3866},{},[3867,3872],{"type":25,"tag":37,"props":3868,"children":3869},{},[3870],{"type":30,"value":3871},"高度可定制",{"type":30,"value":3873},"：不再受限于标准的 Markdown 渲染器。想要一个复杂的折叠面板？写个组件就行。",{"type":25,"tag":3846,"props":3875,"children":3876},{},[3877,3882],{"type":25,"tag":37,"props":3878,"children":3879},{},[3880],{"type":30,"value":3881},"SEO 友好",{"type":30,"value":3883},"：Nuxt MDC 支持服务端渲染（SSR），所有的动态组件内容在爬虫眼中都是结构化的 HTML。",{"type":25,"tag":3846,"props":3885,"children":3886},{},[3887,3892,3894,3899,3901,3906],{"type":25,"tag":37,"props":3888,"children":3889},{},[3890],{"type":30,"value":3891},"内容与样式解耦",{"type":30,"value":3893},"：如果你想更换博客主题，只需要修改 ",{"type":25,"tag":105,"props":3895,"children":3897},{"className":3896},[],[3898],{"type":30,"value":368},{"type":30,"value":3900}," 下的 Vue 组件，而数以百计的 ",{"type":25,"tag":105,"props":3902,"children":3904},{"className":3903},[],[3905],{"type":30,"value":3327},{"type":30,"value":3907}," 文章无需任何变动。",{"type":25,"tag":54,"props":3909,"children":3911},{"id":3910},"结语",[3912],{"type":30,"value":3910},{"type":25,"tag":26,"props":3914,"children":3915},{},[3916],{"type":30,"value":3917},"Nuxt MDC 不仅仅是一个解析器，它是一种全新的**内容驱动开发（Content-driven Development）**模式。通过自定义 MDC 组件，你的博客不再是死气沉沉的文字堆砌，而是一个可以与读者互动、实时更新数据的微型应用。",{"type":25,"tag":26,"props":3919,"children":3920},{},[3921],{"type":30,"value":3922},"现在，去尝试把你的博客页脚、评论区或者技术演示直接“写”进 Markdown 吧！",{"type":25,"tag":54,"props":3924,"children":3926},{"id":3925},"详细的组件代码",[3927],{"type":30,"value":3925},{"type":25,"tag":26,"props":3929,"children":3930},{},[3931],{"type":30,"value":3932},"受限于单篇的体量，这里只给出几个比较有意思的。",{"type":25,"tag":3934,"props":3935,"children":3937},"tabs",{":labels":3936},"[\"视频嵌入\",\"Github卡片\",\"Steps组件\"]",[3938,7790,12678],{"type":25,"tag":173,"props":3939,"children":3940},{"v-slot:tab-0":19},[3941],{"type":25,"tag":98,"props":3942,"children":3944},{"className":404,"code":3943,"language":406,"meta":19,"style":19},"\u003Ctemplate>\n  \u003Cdiv class=\"web-embed-mdc my-6\">\n    \u003Cdiv class=\"embed-container rounded-lg overflow-hidden border border-gray-200 dark:border-gray-700\" :style=\"containerStyle\">\n      \u003Cdiv v-if=\"embedHtml\" v-html=\"embedHtml\" class=\"embed-content\" />\n      \n      \u003Ciframe\n        v-else-if=\"finalUrl\"\n        :src=\"finalUrl\"\n        :title=\"title || 'Embedded Content'\"\n        :width=\"width\"\n        :height=\"height\"\n        frameborder=\"0\"\n        :allow=\"allow\"\n        :allowfullscreen=\"allowFullscreen\"\n        class=\"w-full h-full\"\n      />\n      \n      \u003Cdiv v-else class=\"flex items-center justify-center h-full bg-gray-100 dark:bg-gray-800 text-gray-500\">\n        \u003Cdiv class=\"text-center p-8\">\n          \u003CIcon name=\"film\" size=\"3xl\" class=\"mb-3 mx-auto\" />\n          \u003Cp class=\"text-sm\">无效的 URL\u003C/p>\n        \u003C/div>\n      \u003C/div>\n    \u003C/div>\n    \n    \u003Cp v-if=\"caption\" class=\"text-sm text-gray-600 dark:text-gray-400 text-center mt-2\">\n      {{ caption }}\n    \u003C/p>\n  \u003C/div>\n\u003C/template>\n\n\u003Cscript setup>\n/**\n * WebEmbed 网页/视频嵌入组件 - MDC 语法\n * \n * 支持 Bilibili、YouTube、CodePen、CodeSandbox 等\n * \n * 在 Markdown 中使用：\n * ::web-embed{url=\"https://www.bilibili.com/video/BV1xx411c7mD\" aspectRatio=\"16/9\"}\n * ::\n * \n * ::web-embed{platform=\"bilibili\" vid=\"BV1xx411c7mD\"}\n * ::\n * \n * ::web-embed{platform=\"youtube\" vid=\"dQw4w9WgXcQ\"}\n * ::\n */\n\nconst props = defineProps({\n  url: String,\n  platform: String,\n  vid: String,\n  width: {\n    type: String,\n    default: '100%'\n  },\n  height: {\n    type: String,\n    default: '500px'\n  },\n  aspectRatio: {\n    type: String,\n    default: '16/9'\n  },\n  title: String,\n  caption: String,\n  allow: {\n    type: String,\n    default: 'accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture'\n  },\n  allowFullscreen: {\n    type: Boolean,\n    default: true\n  }\n})\n\nconst embedHtml = ref('')\n\nconst containerStyle = computed(() => {\n  if (props.aspectRatio) {\n    return {\n      aspectRatio: props.aspectRatio,\n      width: '100%'\n    }\n  }\n  return {\n    width: props.width,\n    height: props.height\n  }\n})\n\n// 解析不同平台的 URL\nconst finalUrl = computed(() => {\n  // 如果指定了 platform 和 vid\n  if (props.platform && props.vid) {\n    return getPlatformUrl(props.platform, props.vid)\n  }\n  \n  // 如果提供了完整 URL，尝试自动识别\n  if (props.url) {\n    return parseUrl(props.url)\n  }\n  \n  return ''\n})\n\nconst getPlatformUrl = (platform, vid) => {\n  const platforms = {\n    bilibili: (id) => {\n      // 支持 BV 号\n      if (id.startsWith('BV')) {\n        return `https://player.bilibili.com/player.html?bvid=${id}&high_quality=1&danmaku=0&autoplay=0`\n      }\n      // 支持 av 号\n      return `https://player.bilibili.com/player.html?aid=${id}&high_quality=1&danmaku=0&autoplay=0`\n    },\n    youtube: (id) => `https://www.youtube.com/embed/${id}?autoplay=0`,\n    codepen: (id) => `https://codepen.io/${id}/embed`,\n    codesandbox: (id) => `https://codesandbox.io/embed/${id}`,\n    stackblitz: (id) => `https://stackblitz.com/edit/${id}?embed=1`,\n  }\n  \n  const handler = platforms[platform.toLowerCase()]\n  return handler ? handler(vid) : ''\n}\n\nconst parseUrl = (url) => {\n  try {\n    // Bilibili\n    if (url.includes('bilibili.com')) {\n      const bvMatch = url.match(/BV[\\w]+/)\n      if (bvMatch) {\n        return `https://player.bilibili.com/player.html?bvid=${bvMatch[0]}&high_quality=1&danmaku=0&autoplay=0`\n      }\n      const avMatch = url.match(/av(\\d+)/)\n      if (avMatch) {\n        return `https://player.bilibili.com/player.html?aid=${avMatch[1]}&high_quality=1&danmaku=0&autoplay=0`\n      }\n    }\n    \n    // YouTube\n    if (url.includes('youtube.com') || url.includes('youtu.be')) {\n      const videoIdMatch = url.match(/(?:youtube\\.com\\/watch\\?v=|youtu\\.be\\/)([\\w-]+)/)\n      if (videoIdMatch) {\n        return `https://www.youtube.com/embed/${videoIdMatch[1]}?autoplay=0`\n      }\n    }\n    \n    // CodePen\n    if (url.includes('codepen.io')) {\n      return url.replace('/pen/', '/embed/')\n    }\n    \n    // 其他情况直接返回 URL\n    return url\n  } catch (e) {\n    console.error('解析 URL 失败:', e)\n    return ''\n  }\n}\n\u003C/script>\n\n\u003Cstyle scoped>\n.embed-container {\n  position: relative;\n  background: #000;\n}\n\n.embed-content :deep(iframe) {\n  width: 100%;\n  height: 100%;\n}\n\u003C/style>\n\n",[3945],{"type":25,"tag":105,"props":3946,"children":3947},{"__ignoreMap":19},[3948,3963,3999,4057,4141,4149,4161,4186,4210,4235,4260,4285,4309,4334,4359,4383,4395,4402,4443,4480,4563,4617,4633,4648,4663,4671,4728,4736,4751,4766,4781,4788,4807,4815,4823,4831,4839,4846,4854,4862,4870,4877,4885,4892,4899,4907,4914,4922,4929,4956,4976,4996,5016,5032,5051,5076,5083,5099,5118,5142,5149,5165,5184,5207,5214,5234,5254,5270,5289,5313,5320,5336,5355,5370,5377,5388,5395,5428,5435,5471,5503,5515,5543,5567,5575,5582,5593,5621,5646,5653,5664,5671,5679,5715,5723,5773,5821,5828,5836,5844,5876,5908,5915,5922,5933,5944,5951,5995,6015,6048,6056,6106,6147,6155,6163,6200,6208,6271,6333,6390,6452,6459,6466,6508,6548,6555,6562,6597,6609,6617,6666,6733,6758,6806,6814,6879,6904,6953,6961,6969,6977,6986,7072,7199,7224,7272,7280,7288,7296,7305,7354,7413,7421,7429,7438,7451,7482,7530,7542,7550,7558,7574,7582,7602,7619,7641,7668,7676,7684,7716,7742,7766,7774],{"type":25,"tag":109,"props":3949,"children":3950},{"class":111,"line":112},[3951,3955,3959],{"type":25,"tag":109,"props":3952,"children":3953},{"style":293},[3954],{"type":30,"value":418},{"type":25,"tag":109,"props":3956,"children":3957},{"style":302},[3958],{"type":30,"value":173},{"type":25,"tag":109,"props":3960,"children":3961},{"style":293},[3962],{"type":30,"value":427},{"type":25,"tag":109,"props":3964,"children":3965},{"class":111,"line":122},[3966,3970,3974,3978,3982,3986,3991,3995],{"type":25,"tag":109,"props":3967,"children":3968},{"style":293},[3969],{"type":30,"value":435},{"type":25,"tag":109,"props":3971,"children":3972},{"style":302},[3973],{"type":30,"value":440},{"type":25,"tag":109,"props":3975,"children":3976},{"style":443},[3977],{"type":30,"value":446},{"type":25,"tag":109,"props":3979,"children":3980},{"style":293},[3981],{"type":30,"value":451},{"type":25,"tag":109,"props":3983,"children":3984},{"style":318},[3985],{"type":30,"value":456},{"type":25,"tag":109,"props":3987,"children":3988},{"style":225},[3989],{"type":30,"value":3990},"web-embed-mdc my-6",{"type":25,"tag":109,"props":3992,"children":3993},{"style":318},[3994],{"type":30,"value":456},{"type":25,"tag":109,"props":3996,"children":3997},{"style":293},[3998],{"type":30,"value":427},{"type":25,"tag":109,"props":4000,"children":4001},{"class":111,"line":152},[4002,4006,4010,4014,4018,4022,4027,4031,4036,4040,4044,4049,4053],{"type":25,"tag":109,"props":4003,"children":4004},{"style":293},[4005],{"type":30,"value":477},{"type":25,"tag":109,"props":4007,"children":4008},{"style":302},[4009],{"type":30,"value":440},{"type":25,"tag":109,"props":4011,"children":4012},{"style":443},[4013],{"type":30,"value":446},{"type":25,"tag":109,"props":4015,"children":4016},{"style":293},[4017],{"type":30,"value":451},{"type":25,"tag":109,"props":4019,"children":4020},{"style":318},[4021],{"type":30,"value":456},{"type":25,"tag":109,"props":4023,"children":4024},{"style":225},[4025],{"type":30,"value":4026},"embed-container rounded-lg overflow-hidden border border-gray-200 dark:border-gray-700",{"type":25,"tag":109,"props":4028,"children":4029},{"style":318},[4030],{"type":30,"value":456},{"type":25,"tag":109,"props":4032,"children":4033},{"style":443},[4034],{"type":30,"value":4035}," :style",{"type":25,"tag":109,"props":4037,"children":4038},{"style":293},[4039],{"type":30,"value":451},{"type":25,"tag":109,"props":4041,"children":4042},{"style":318},[4043],{"type":30,"value":456},{"type":25,"tag":109,"props":4045,"children":4046},{"style":225},[4047],{"type":30,"value":4048},"containerStyle",{"type":25,"tag":109,"props":4050,"children":4051},{"style":318},[4052],{"type":30,"value":456},{"type":25,"tag":109,"props":4054,"children":4055},{"style":293},[4056],{"type":30,"value":427},{"type":25,"tag":109,"props":4058,"children":4059},{"class":111,"line":509},[4060,4064,4068,4072,4076,4080,4085,4089,4094,4098,4102,4106,4110,4114,4118,4122,4127,4131,4137],{"type":25,"tag":109,"props":4061,"children":4062},{"style":293},[4063],{"type":30,"value":515},{"type":25,"tag":109,"props":4065,"children":4066},{"style":302},[4067],{"type":30,"value":440},{"type":25,"tag":109,"props":4069,"children":4070},{"style":443},[4071],{"type":30,"value":524},{"type":25,"tag":109,"props":4073,"children":4074},{"style":293},[4075],{"type":30,"value":451},{"type":25,"tag":109,"props":4077,"children":4078},{"style":318},[4079],{"type":30,"value":456},{"type":25,"tag":109,"props":4081,"children":4082},{"style":225},[4083],{"type":30,"value":4084},"embedHtml",{"type":25,"tag":109,"props":4086,"children":4087},{"style":318},[4088],{"type":30,"value":456},{"type":25,"tag":109,"props":4090,"children":4091},{"style":443},[4092],{"type":30,"value":4093}," v-html",{"type":25,"tag":109,"props":4095,"children":4096},{"style":293},[4097],{"type":30,"value":451},{"type":25,"tag":109,"props":4099,"children":4100},{"style":318},[4101],{"type":30,"value":456},{"type":25,"tag":109,"props":4103,"children":4104},{"style":225},[4105],{"type":30,"value":4084},{"type":25,"tag":109,"props":4107,"children":4108},{"style":318},[4109],{"type":30,"value":456},{"type":25,"tag":109,"props":4111,"children":4112},{"style":443},[4113],{"type":30,"value":446},{"type":25,"tag":109,"props":4115,"children":4116},{"style":293},[4117],{"type":30,"value":451},{"type":25,"tag":109,"props":4119,"children":4120},{"style":318},[4121],{"type":30,"value":456},{"type":25,"tag":109,"props":4123,"children":4124},{"style":225},[4125],{"type":30,"value":4126},"embed-content",{"type":25,"tag":109,"props":4128,"children":4129},{"style":318},[4130],{"type":30,"value":456},{"type":25,"tag":109,"props":4132,"children":4134},{"style":4133},"--shiki-default:#89DDFF;--shiki-dark:#FFFFFF",[4135],{"type":30,"value":4136}," /",{"type":25,"tag":109,"props":4138,"children":4139},{"style":293},[4140],{"type":30,"value":427},{"type":25,"tag":109,"props":4142,"children":4143},{"class":111,"line":569},[4144],{"type":25,"tag":109,"props":4145,"children":4146},{"style":116},[4147],{"type":30,"value":4148},"      \n",{"type":25,"tag":109,"props":4150,"children":4151},{"class":111,"line":578},[4152,4156],{"type":25,"tag":109,"props":4153,"children":4154},{"style":293},[4155],{"type":30,"value":515},{"type":25,"tag":109,"props":4157,"children":4158},{"style":302},[4159],{"type":30,"value":4160},"iframe\n",{"type":25,"tag":109,"props":4162,"children":4163},{"class":111,"line":595},[4164,4169,4173,4177,4182],{"type":25,"tag":109,"props":4165,"children":4166},{"style":443},[4167],{"type":30,"value":4168},"        v-else-if",{"type":25,"tag":109,"props":4170,"children":4171},{"style":293},[4172],{"type":30,"value":451},{"type":25,"tag":109,"props":4174,"children":4175},{"style":318},[4176],{"type":30,"value":456},{"type":25,"tag":109,"props":4178,"children":4179},{"style":225},[4180],{"type":30,"value":4181},"finalUrl",{"type":25,"tag":109,"props":4183,"children":4184},{"style":318},[4185],{"type":30,"value":642},{"type":25,"tag":109,"props":4187,"children":4188},{"class":111,"line":605},[4189,4194,4198,4202,4206],{"type":25,"tag":109,"props":4190,"children":4191},{"style":443},[4192],{"type":30,"value":4193},"        :src",{"type":25,"tag":109,"props":4195,"children":4196},{"style":293},[4197],{"type":30,"value":451},{"type":25,"tag":109,"props":4199,"children":4200},{"style":318},[4201],{"type":30,"value":456},{"type":25,"tag":109,"props":4203,"children":4204},{"style":225},[4205],{"type":30,"value":4181},{"type":25,"tag":109,"props":4207,"children":4208},{"style":318},[4209],{"type":30,"value":642},{"type":25,"tag":109,"props":4211,"children":4212},{"class":111,"line":618},[4213,4218,4222,4226,4231],{"type":25,"tag":109,"props":4214,"children":4215},{"style":443},[4216],{"type":30,"value":4217},"        :title",{"type":25,"tag":109,"props":4219,"children":4220},{"style":293},[4221],{"type":30,"value":451},{"type":25,"tag":109,"props":4223,"children":4224},{"style":318},[4225],{"type":30,"value":456},{"type":25,"tag":109,"props":4227,"children":4228},{"style":225},[4229],{"type":30,"value":4230},"title || 'Embedded Content'",{"type":25,"tag":109,"props":4232,"children":4233},{"style":318},[4234],{"type":30,"value":642},{"type":25,"tag":109,"props":4236,"children":4237},{"class":111,"line":645},[4238,4243,4247,4251,4256],{"type":25,"tag":109,"props":4239,"children":4240},{"style":443},[4241],{"type":30,"value":4242},"        :width",{"type":25,"tag":109,"props":4244,"children":4245},{"style":293},[4246],{"type":30,"value":451},{"type":25,"tag":109,"props":4248,"children":4249},{"style":318},[4250],{"type":30,"value":456},{"type":25,"tag":109,"props":4252,"children":4253},{"style":225},[4254],{"type":30,"value":4255},"width",{"type":25,"tag":109,"props":4257,"children":4258},{"style":318},[4259],{"type":30,"value":642},{"type":25,"tag":109,"props":4261,"children":4262},{"class":111,"line":671},[4263,4268,4272,4276,4281],{"type":25,"tag":109,"props":4264,"children":4265},{"style":443},[4266],{"type":30,"value":4267},"        :height",{"type":25,"tag":109,"props":4269,"children":4270},{"style":293},[4271],{"type":30,"value":451},{"type":25,"tag":109,"props":4273,"children":4274},{"style":318},[4275],{"type":30,"value":456},{"type":25,"tag":109,"props":4277,"children":4278},{"style":225},[4279],{"type":30,"value":4280},"height",{"type":25,"tag":109,"props":4282,"children":4283},{"style":318},[4284],{"type":30,"value":642},{"type":25,"tag":109,"props":4286,"children":4287},{"class":111,"line":697},[4288,4293,4297,4301,4305],{"type":25,"tag":109,"props":4289,"children":4290},{"style":443},[4291],{"type":30,"value":4292},"        frameborder",{"type":25,"tag":109,"props":4294,"children":4295},{"style":293},[4296],{"type":30,"value":451},{"type":25,"tag":109,"props":4298,"children":4299},{"style":318},[4300],{"type":30,"value":456},{"type":25,"tag":109,"props":4302,"children":4303},{"style":225},[4304],{"type":30,"value":1855},{"type":25,"tag":109,"props":4306,"children":4307},{"style":318},[4308],{"type":30,"value":642},{"type":25,"tag":109,"props":4310,"children":4311},{"class":111,"line":723},[4312,4317,4321,4325,4330],{"type":25,"tag":109,"props":4313,"children":4314},{"style":443},[4315],{"type":30,"value":4316},"        :allow",{"type":25,"tag":109,"props":4318,"children":4319},{"style":293},[4320],{"type":30,"value":451},{"type":25,"tag":109,"props":4322,"children":4323},{"style":318},[4324],{"type":30,"value":456},{"type":25,"tag":109,"props":4326,"children":4327},{"style":225},[4328],{"type":30,"value":4329},"allow",{"type":25,"tag":109,"props":4331,"children":4332},{"style":318},[4333],{"type":30,"value":642},{"type":25,"tag":109,"props":4335,"children":4336},{"class":111,"line":749},[4337,4342,4346,4350,4355],{"type":25,"tag":109,"props":4338,"children":4339},{"style":443},[4340],{"type":30,"value":4341},"        :allowfullscreen",{"type":25,"tag":109,"props":4343,"children":4344},{"style":293},[4345],{"type":30,"value":451},{"type":25,"tag":109,"props":4347,"children":4348},{"style":318},[4349],{"type":30,"value":456},{"type":25,"tag":109,"props":4351,"children":4352},{"style":225},[4353],{"type":30,"value":4354},"allowFullscreen",{"type":25,"tag":109,"props":4356,"children":4357},{"style":318},[4358],{"type":30,"value":642},{"type":25,"tag":109,"props":4360,"children":4361},{"class":111,"line":775},[4362,4366,4370,4374,4379],{"type":25,"tag":109,"props":4363,"children":4364},{"style":443},[4365],{"type":30,"value":781},{"type":25,"tag":109,"props":4367,"children":4368},{"style":293},[4369],{"type":30,"value":451},{"type":25,"tag":109,"props":4371,"children":4372},{"style":318},[4373],{"type":30,"value":456},{"type":25,"tag":109,"props":4375,"children":4376},{"style":225},[4377],{"type":30,"value":4378},"w-full h-full",{"type":25,"tag":109,"props":4380,"children":4381},{"style":318},[4382],{"type":30,"value":642},{"type":25,"tag":109,"props":4384,"children":4385},{"class":111,"line":801},[4386,4391],{"type":25,"tag":109,"props":4387,"children":4388},{"style":4133},[4389],{"type":30,"value":4390},"      /",{"type":25,"tag":109,"props":4392,"children":4393},{"style":293},[4394],{"type":30,"value":427},{"type":25,"tag":109,"props":4396,"children":4397},{"class":111,"line":827},[4398],{"type":25,"tag":109,"props":4399,"children":4400},{"style":116},[4401],{"type":30,"value":4148},{"type":25,"tag":109,"props":4403,"children":4404},{"class":111,"line":836},[4405,4409,4413,4418,4422,4426,4430,4435,4439],{"type":25,"tag":109,"props":4406,"children":4407},{"style":293},[4408],{"type":30,"value":515},{"type":25,"tag":109,"props":4410,"children":4411},{"style":302},[4412],{"type":30,"value":440},{"type":25,"tag":109,"props":4414,"children":4415},{"style":443},[4416],{"type":30,"value":4417}," v-else",{"type":25,"tag":109,"props":4419,"children":4420},{"style":443},[4421],{"type":30,"value":446},{"type":25,"tag":109,"props":4423,"children":4424},{"style":293},[4425],{"type":30,"value":451},{"type":25,"tag":109,"props":4427,"children":4428},{"style":318},[4429],{"type":30,"value":456},{"type":25,"tag":109,"props":4431,"children":4432},{"style":225},[4433],{"type":30,"value":4434},"flex items-center justify-center h-full bg-gray-100 dark:bg-gray-800 text-gray-500",{"type":25,"tag":109,"props":4436,"children":4437},{"style":318},[4438],{"type":30,"value":456},{"type":25,"tag":109,"props":4440,"children":4441},{"style":293},[4442],{"type":30,"value":427},{"type":25,"tag":109,"props":4444,"children":4445},{"class":111,"line":853},[4446,4451,4455,4459,4463,4467,4472,4476],{"type":25,"tag":109,"props":4447,"children":4448},{"style":293},[4449],{"type":30,"value":4450},"        \u003C",{"type":25,"tag":109,"props":4452,"children":4453},{"style":302},[4454],{"type":30,"value":440},{"type":25,"tag":109,"props":4456,"children":4457},{"style":443},[4458],{"type":30,"value":446},{"type":25,"tag":109,"props":4460,"children":4461},{"style":293},[4462],{"type":30,"value":451},{"type":25,"tag":109,"props":4464,"children":4465},{"style":318},[4466],{"type":30,"value":456},{"type":25,"tag":109,"props":4468,"children":4469},{"style":225},[4470],{"type":30,"value":4471},"text-center p-8",{"type":25,"tag":109,"props":4473,"children":4474},{"style":318},[4475],{"type":30,"value":456},{"type":25,"tag":109,"props":4477,"children":4478},{"style":293},[4479],{"type":30,"value":427},{"type":25,"tag":109,"props":4481,"children":4482},{"class":111,"line":870},[4483,4488,4493,4498,4502,4506,4511,4515,4520,4524,4528,4533,4537,4541,4545,4549,4554,4558],{"type":25,"tag":109,"props":4484,"children":4485},{"style":293},[4486],{"type":30,"value":4487},"          \u003C",{"type":25,"tag":109,"props":4489,"children":4490},{"style":302},[4491],{"type":30,"value":4492},"Icon",{"type":25,"tag":109,"props":4494,"children":4495},{"style":443},[4496],{"type":30,"value":4497}," name",{"type":25,"tag":109,"props":4499,"children":4500},{"style":293},[4501],{"type":30,"value":451},{"type":25,"tag":109,"props":4503,"children":4504},{"style":318},[4505],{"type":30,"value":456},{"type":25,"tag":109,"props":4507,"children":4508},{"style":225},[4509],{"type":30,"value":4510},"film",{"type":25,"tag":109,"props":4512,"children":4513},{"style":318},[4514],{"type":30,"value":456},{"type":25,"tag":109,"props":4516,"children":4517},{"style":443},[4518],{"type":30,"value":4519}," size",{"type":25,"tag":109,"props":4521,"children":4522},{"style":293},[4523],{"type":30,"value":451},{"type":25,"tag":109,"props":4525,"children":4526},{"style":318},[4527],{"type":30,"value":456},{"type":25,"tag":109,"props":4529,"children":4530},{"style":225},[4531],{"type":30,"value":4532},"3xl",{"type":25,"tag":109,"props":4534,"children":4535},{"style":318},[4536],{"type":30,"value":456},{"type":25,"tag":109,"props":4538,"children":4539},{"style":443},[4540],{"type":30,"value":446},{"type":25,"tag":109,"props":4542,"children":4543},{"style":293},[4544],{"type":30,"value":451},{"type":25,"tag":109,"props":4546,"children":4547},{"style":318},[4548],{"type":30,"value":456},{"type":25,"tag":109,"props":4550,"children":4551},{"style":225},[4552],{"type":30,"value":4553},"mb-3 mx-auto",{"type":25,"tag":109,"props":4555,"children":4556},{"style":318},[4557],{"type":30,"value":456},{"type":25,"tag":109,"props":4559,"children":4560},{"style":293},[4561],{"type":30,"value":4562}," />\n",{"type":25,"tag":109,"props":4564,"children":4565},{"class":111,"line":887},[4566,4570,4574,4578,4582,4586,4591,4595,4600,4605,4609,4613],{"type":25,"tag":109,"props":4567,"children":4568},{"style":293},[4569],{"type":30,"value":4487},{"type":25,"tag":109,"props":4571,"children":4572},{"style":302},[4573],{"type":30,"value":26},{"type":25,"tag":109,"props":4575,"children":4576},{"style":443},[4577],{"type":30,"value":446},{"type":25,"tag":109,"props":4579,"children":4580},{"style":293},[4581],{"type":30,"value":451},{"type":25,"tag":109,"props":4583,"children":4584},{"style":318},[4585],{"type":30,"value":456},{"type":25,"tag":109,"props":4587,"children":4588},{"style":225},[4589],{"type":30,"value":4590},"text-sm",{"type":25,"tag":109,"props":4592,"children":4593},{"style":318},[4594],{"type":30,"value":456},{"type":25,"tag":109,"props":4596,"children":4597},{"style":293},[4598],{"type":30,"value":4599},">",{"type":25,"tag":109,"props":4601,"children":4602},{"style":116},[4603],{"type":30,"value":4604},"无效的 URL",{"type":25,"tag":109,"props":4606,"children":4607},{"style":293},[4608],{"type":30,"value":876},{"type":25,"tag":109,"props":4610,"children":4611},{"style":302},[4612],{"type":30,"value":26},{"type":25,"tag":109,"props":4614,"children":4615},{"style":293},[4616],{"type":30,"value":427},{"type":25,"tag":109,"props":4618,"children":4619},{"class":111,"line":895},[4620,4625,4629],{"type":25,"tag":109,"props":4621,"children":4622},{"style":293},[4623],{"type":30,"value":4624},"        \u003C/",{"type":25,"tag":109,"props":4626,"children":4627},{"style":302},[4628],{"type":30,"value":440},{"type":25,"tag":109,"props":4630,"children":4631},{"style":293},[4632],{"type":30,"value":427},{"type":25,"tag":109,"props":4634,"children":4635},{"class":111,"line":917},[4636,4640,4644],{"type":25,"tag":109,"props":4637,"children":4638},{"style":293},[4639],{"type":30,"value":584},{"type":25,"tag":109,"props":4641,"children":4642},{"style":302},[4643],{"type":30,"value":440},{"type":25,"tag":109,"props":4645,"children":4646},{"style":293},[4647],{"type":30,"value":427},{"type":25,"tag":109,"props":4649,"children":4650},{"class":111,"line":925},[4651,4655,4659],{"type":25,"tag":109,"props":4652,"children":4653},{"style":293},[4654],{"type":30,"value":842},{"type":25,"tag":109,"props":4656,"children":4657},{"style":302},[4658],{"type":30,"value":440},{"type":25,"tag":109,"props":4660,"children":4661},{"style":293},[4662],{"type":30,"value":427},{"type":25,"tag":109,"props":4664,"children":4665},{"class":111,"line":960},[4666],{"type":25,"tag":109,"props":4667,"children":4668},{"style":116},[4669],{"type":30,"value":4670},"    \n",{"type":25,"tag":109,"props":4672,"children":4673},{"class":111,"line":978},[4674,4678,4682,4686,4690,4694,4699,4703,4707,4711,4715,4720,4724],{"type":25,"tag":109,"props":4675,"children":4676},{"style":293},[4677],{"type":30,"value":477},{"type":25,"tag":109,"props":4679,"children":4680},{"style":302},[4681],{"type":30,"value":26},{"type":25,"tag":109,"props":4683,"children":4684},{"style":443},[4685],{"type":30,"value":524},{"type":25,"tag":109,"props":4687,"children":4688},{"style":293},[4689],{"type":30,"value":451},{"type":25,"tag":109,"props":4691,"children":4692},{"style":318},[4693],{"type":30,"value":456},{"type":25,"tag":109,"props":4695,"children":4696},{"style":225},[4697],{"type":30,"value":4698},"caption",{"type":25,"tag":109,"props":4700,"children":4701},{"style":318},[4702],{"type":30,"value":456},{"type":25,"tag":109,"props":4704,"children":4705},{"style":443},[4706],{"type":30,"value":446},{"type":25,"tag":109,"props":4708,"children":4709},{"style":293},[4710],{"type":30,"value":451},{"type":25,"tag":109,"props":4712,"children":4713},{"style":318},[4714],{"type":30,"value":456},{"type":25,"tag":109,"props":4716,"children":4717},{"style":225},[4718],{"type":30,"value":4719},"text-sm text-gray-600 dark:text-gray-400 text-center mt-2",{"type":25,"tag":109,"props":4721,"children":4722},{"style":318},[4723],{"type":30,"value":456},{"type":25,"tag":109,"props":4725,"children":4726},{"style":293},[4727],{"type":30,"value":427},{"type":25,"tag":109,"props":4729,"children":4730},{"class":111,"line":1021},[4731],{"type":25,"tag":109,"props":4732,"children":4733},{"style":116},[4734],{"type":30,"value":4735},"      {{ caption }}\n",{"type":25,"tag":109,"props":4737,"children":4738},{"class":111,"line":1040},[4739,4743,4747],{"type":25,"tag":109,"props":4740,"children":4741},{"style":293},[4742],{"type":30,"value":842},{"type":25,"tag":109,"props":4744,"children":4745},{"style":302},[4746],{"type":30,"value":26},{"type":25,"tag":109,"props":4748,"children":4749},{"style":293},[4750],{"type":30,"value":427},{"type":25,"tag":109,"props":4752,"children":4753},{"class":111,"line":1049},[4754,4758,4762],{"type":25,"tag":109,"props":4755,"children":4756},{"style":293},[4757],{"type":30,"value":859},{"type":25,"tag":109,"props":4759,"children":4760},{"style":302},[4761],{"type":30,"value":440},{"type":25,"tag":109,"props":4763,"children":4764},{"style":293},[4765],{"type":30,"value":427},{"type":25,"tag":109,"props":4767,"children":4768},{"class":111,"line":1066},[4769,4773,4777],{"type":25,"tag":109,"props":4770,"children":4771},{"style":293},[4772],{"type":30,"value":876},{"type":25,"tag":109,"props":4774,"children":4775},{"style":302},[4776],{"type":30,"value":173},{"type":25,"tag":109,"props":4778,"children":4779},{"style":293},[4780],{"type":30,"value":427},{"type":25,"tag":109,"props":4782,"children":4783},{"class":111,"line":1102},[4784],{"type":25,"tag":109,"props":4785,"children":4786},{"emptyLinePlaceholder":599},[4787],{"type":30,"value":602},{"type":25,"tag":109,"props":4789,"children":4790},{"class":111,"line":1119},[4791,4795,4799,4803],{"type":25,"tag":109,"props":4792,"children":4793},{"style":293},[4794],{"type":30,"value":418},{"type":25,"tag":109,"props":4796,"children":4797},{"style":302},[4798],{"type":30,"value":905},{"type":25,"tag":109,"props":4800,"children":4801},{"style":443},[4802],{"type":30,"value":910},{"type":25,"tag":109,"props":4804,"children":4805},{"style":293},[4806],{"type":30,"value":427},{"type":25,"tag":109,"props":4808,"children":4809},{"class":111,"line":1127},[4810],{"type":25,"tag":109,"props":4811,"children":4812},{"style":1194},[4813],{"type":30,"value":4814},"/**\n",{"type":25,"tag":109,"props":4816,"children":4817},{"class":111,"line":1144},[4818],{"type":25,"tag":109,"props":4819,"children":4820},{"style":1194},[4821],{"type":30,"value":4822}," * WebEmbed 网页/视频嵌入组件 - MDC 语法\n",{"type":25,"tag":109,"props":4824,"children":4825},{"class":111,"line":1164},[4826],{"type":25,"tag":109,"props":4827,"children":4828},{"style":1194},[4829],{"type":30,"value":4830}," * \n",{"type":25,"tag":109,"props":4832,"children":4833},{"class":111,"line":1200},[4834],{"type":25,"tag":109,"props":4835,"children":4836},{"style":1194},[4837],{"type":30,"value":4838}," * 支持 Bilibili、YouTube、CodePen、CodeSandbox 等\n",{"type":25,"tag":109,"props":4840,"children":4841},{"class":111,"line":1310},[4842],{"type":25,"tag":109,"props":4843,"children":4844},{"style":1194},[4845],{"type":30,"value":4830},{"type":25,"tag":109,"props":4847,"children":4848},{"class":111,"line":1318},[4849],{"type":25,"tag":109,"props":4850,"children":4851},{"style":1194},[4852],{"type":30,"value":4853}," * 在 Markdown 中使用：\n",{"type":25,"tag":109,"props":4855,"children":4856},{"class":111,"line":1335},[4857],{"type":25,"tag":109,"props":4858,"children":4859},{"style":1194},[4860],{"type":30,"value":4861}," * ::web-embed{url=\"https://www.bilibili.com/video/BV1xx411c7mD\" aspectRatio=\"16/9\"}\n",{"type":25,"tag":109,"props":4863,"children":4864},{"class":111,"line":1356},[4865],{"type":25,"tag":109,"props":4866,"children":4867},{"style":1194},[4868],{"type":30,"value":4869}," * ::\n",{"type":25,"tag":109,"props":4871,"children":4872},{"class":111,"line":1374},[4873],{"type":25,"tag":109,"props":4874,"children":4875},{"style":1194},[4876],{"type":30,"value":4830},{"type":25,"tag":109,"props":4878,"children":4879},{"class":111,"line":1382},[4880],{"type":25,"tag":109,"props":4881,"children":4882},{"style":1194},[4883],{"type":30,"value":4884}," * ::web-embed{platform=\"bilibili\" vid=\"BV1xx411c7mD\"}\n",{"type":25,"tag":109,"props":4886,"children":4887},{"class":111,"line":1399},[4888],{"type":25,"tag":109,"props":4889,"children":4890},{"style":1194},[4891],{"type":30,"value":4869},{"type":25,"tag":109,"props":4893,"children":4894},{"class":111,"line":1419},[4895],{"type":25,"tag":109,"props":4896,"children":4897},{"style":1194},[4898],{"type":30,"value":4830},{"type":25,"tag":109,"props":4900,"children":4901},{"class":111,"line":1435},[4902],{"type":25,"tag":109,"props":4903,"children":4904},{"style":1194},[4905],{"type":30,"value":4906}," * ::web-embed{platform=\"youtube\" vid=\"dQw4w9WgXcQ\"}\n",{"type":25,"tag":109,"props":4908,"children":4909},{"class":111,"line":1443},[4910],{"type":25,"tag":109,"props":4911,"children":4912},{"style":1194},[4913],{"type":30,"value":4869},{"type":25,"tag":109,"props":4915,"children":4916},{"class":111,"line":1460},[4917],{"type":25,"tag":109,"props":4918,"children":4919},{"style":1194},[4920],{"type":30,"value":4921}," */\n",{"type":25,"tag":109,"props":4923,"children":4924},{"class":111,"line":1480},[4925],{"type":25,"tag":109,"props":4926,"children":4927},{"emptyLinePlaceholder":599},[4928],{"type":30,"value":602},{"type":25,"tag":109,"props":4930,"children":4931},{"class":111,"line":1497},[4932,4936,4940,4944,4948,4952],{"type":25,"tag":109,"props":4933,"children":4934},{"style":929},[4935],{"type":30,"value":932},{"type":25,"tag":109,"props":4937,"children":4938},{"style":935},[4939],{"type":30,"value":938},{"type":25,"tag":109,"props":4941,"children":4942},{"style":941},[4943],{"type":30,"value":944},{"type":25,"tag":109,"props":4945,"children":4946},{"style":282},[4947],{"type":30,"value":949},{"type":25,"tag":109,"props":4949,"children":4950},{"style":116},[4951],{"type":30,"value":290},{"type":25,"tag":109,"props":4953,"children":4954},{"style":293},[4955],{"type":30,"value":296},{"type":25,"tag":109,"props":4957,"children":4958},{"class":111,"line":1506},[4959,4964,4968,4972],{"type":25,"tag":109,"props":4960,"children":4961},{"style":302},[4962],{"type":30,"value":4963},"  url",{"type":25,"tag":109,"props":4965,"children":4966},{"style":293},[4967],{"type":30,"value":310},{"type":25,"tag":109,"props":4969,"children":4970},{"style":995},[4971],{"type":30,"value":1008},{"type":25,"tag":109,"props":4973,"children":4974},{"style":293},[4975],{"type":30,"value":1018},{"type":25,"tag":109,"props":4977,"children":4978},{"class":111,"line":1518},[4979,4984,4988,4992],{"type":25,"tag":109,"props":4980,"children":4981},{"style":302},[4982],{"type":30,"value":4983},"  platform",{"type":25,"tag":109,"props":4985,"children":4986},{"style":293},[4987],{"type":30,"value":310},{"type":25,"tag":109,"props":4989,"children":4990},{"style":995},[4991],{"type":30,"value":1008},{"type":25,"tag":109,"props":4993,"children":4994},{"style":293},[4995],{"type":30,"value":1018},{"type":25,"tag":109,"props":4997,"children":4998},{"class":111,"line":1526},[4999,5004,5008,5012],{"type":25,"tag":109,"props":5000,"children":5001},{"style":302},[5002],{"type":30,"value":5003},"  vid",{"type":25,"tag":109,"props":5005,"children":5006},{"style":293},[5007],{"type":30,"value":310},{"type":25,"tag":109,"props":5009,"children":5010},{"style":995},[5011],{"type":30,"value":1008},{"type":25,"tag":109,"props":5013,"children":5014},{"style":293},[5015],{"type":30,"value":1018},{"type":25,"tag":109,"props":5017,"children":5018},{"class":111,"line":1571},[5019,5024,5028],{"type":25,"tag":109,"props":5020,"children":5021},{"style":302},[5022],{"type":30,"value":5023},"  width",{"type":25,"tag":109,"props":5025,"children":5026},{"style":293},[5027],{"type":30,"value":310},{"type":25,"tag":109,"props":5029,"children":5030},{"style":293},[5031],{"type":30,"value":975},{"type":25,"tag":109,"props":5033,"children":5034},{"class":111,"line":1579},[5035,5039,5043,5047],{"type":25,"tag":109,"props":5036,"children":5037},{"style":302},[5038],{"type":30,"value":984},{"type":25,"tag":109,"props":5040,"children":5041},{"style":293},[5042],{"type":30,"value":310},{"type":25,"tag":109,"props":5044,"children":5045},{"style":995},[5046],{"type":30,"value":1008},{"type":25,"tag":109,"props":5048,"children":5049},{"style":293},[5050],{"type":30,"value":1018},{"type":25,"tag":109,"props":5052,"children":5053},{"class":111,"line":1627},[5054,5058,5062,5066,5071],{"type":25,"tag":109,"props":5055,"children":5056},{"style":302},[5057],{"type":30,"value":1027},{"type":25,"tag":109,"props":5059,"children":5060},{"style":293},[5061],{"type":30,"value":310},{"type":25,"tag":109,"props":5063,"children":5064},{"style":318},[5065],{"type":30,"value":1178},{"type":25,"tag":109,"props":5067,"children":5068},{"style":225},[5069],{"type":30,"value":5070},"100%",{"type":25,"tag":109,"props":5072,"children":5073},{"style":318},[5074],{"type":30,"value":5075},"'\n",{"type":25,"tag":109,"props":5077,"children":5078},{"class":111,"line":1663},[5079],{"type":25,"tag":109,"props":5080,"children":5081},{"style":293},[5082],{"type":30,"value":1046},{"type":25,"tag":109,"props":5084,"children":5085},{"class":111,"line":1697},[5086,5091,5095],{"type":25,"tag":109,"props":5087,"children":5088},{"style":302},[5089],{"type":30,"value":5090},"  height",{"type":25,"tag":109,"props":5092,"children":5093},{"style":293},[5094],{"type":30,"value":310},{"type":25,"tag":109,"props":5096,"children":5097},{"style":293},[5098],{"type":30,"value":975},{"type":25,"tag":109,"props":5100,"children":5101},{"class":111,"line":1705},[5102,5106,5110,5114],{"type":25,"tag":109,"props":5103,"children":5104},{"style":302},[5105],{"type":30,"value":984},{"type":25,"tag":109,"props":5107,"children":5108},{"style":293},[5109],{"type":30,"value":310},{"type":25,"tag":109,"props":5111,"children":5112},{"style":995},[5113],{"type":30,"value":1008},{"type":25,"tag":109,"props":5115,"children":5116},{"style":293},[5117],{"type":30,"value":1018},{"type":25,"tag":109,"props":5119,"children":5120},{"class":111,"line":1754},[5121,5125,5129,5133,5138],{"type":25,"tag":109,"props":5122,"children":5123},{"style":302},[5124],{"type":30,"value":1027},{"type":25,"tag":109,"props":5126,"children":5127},{"style":293},[5128],{"type":30,"value":310},{"type":25,"tag":109,"props":5130,"children":5131},{"style":318},[5132],{"type":30,"value":1178},{"type":25,"tag":109,"props":5134,"children":5135},{"style":225},[5136],{"type":30,"value":5137},"500px",{"type":25,"tag":109,"props":5139,"children":5140},{"style":318},[5141],{"type":30,"value":5075},{"type":25,"tag":109,"props":5143,"children":5144},{"class":111,"line":1818},[5145],{"type":25,"tag":109,"props":5146,"children":5147},{"style":293},[5148],{"type":30,"value":1046},{"type":25,"tag":109,"props":5150,"children":5151},{"class":111,"line":1896},[5152,5157,5161],{"type":25,"tag":109,"props":5153,"children":5154},{"style":302},[5155],{"type":30,"value":5156},"  aspectRatio",{"type":25,"tag":109,"props":5158,"children":5159},{"style":293},[5160],{"type":30,"value":310},{"type":25,"tag":109,"props":5162,"children":5163},{"style":293},[5164],{"type":30,"value":975},{"type":25,"tag":109,"props":5166,"children":5167},{"class":111,"line":1951},[5168,5172,5176,5180],{"type":25,"tag":109,"props":5169,"children":5170},{"style":302},[5171],{"type":30,"value":984},{"type":25,"tag":109,"props":5173,"children":5174},{"style":293},[5175],{"type":30,"value":310},{"type":25,"tag":109,"props":5177,"children":5178},{"style":995},[5179],{"type":30,"value":1008},{"type":25,"tag":109,"props":5181,"children":5182},{"style":293},[5183],{"type":30,"value":1018},{"type":25,"tag":109,"props":5185,"children":5186},{"class":111,"line":1960},[5187,5191,5195,5199,5203],{"type":25,"tag":109,"props":5188,"children":5189},{"style":302},[5190],{"type":30,"value":1027},{"type":25,"tag":109,"props":5192,"children":5193},{"style":293},[5194],{"type":30,"value":310},{"type":25,"tag":109,"props":5196,"children":5197},{"style":318},[5198],{"type":30,"value":1178},{"type":25,"tag":109,"props":5200,"children":5201},{"style":225},[5202],{"type":30,"value":3487},{"type":25,"tag":109,"props":5204,"children":5205},{"style":318},[5206],{"type":30,"value":5075},{"type":25,"tag":109,"props":5208,"children":5209},{"class":111,"line":1968},[5210],{"type":25,"tag":109,"props":5211,"children":5212},{"style":293},[5213],{"type":30,"value":1046},{"type":25,"tag":109,"props":5215,"children":5216},{"class":111,"line":2036},[5217,5222,5226,5230],{"type":25,"tag":109,"props":5218,"children":5219},{"style":302},[5220],{"type":30,"value":5221},"  title",{"type":25,"tag":109,"props":5223,"children":5224},{"style":293},[5225],{"type":30,"value":310},{"type":25,"tag":109,"props":5227,"children":5228},{"style":995},[5229],{"type":30,"value":1008},{"type":25,"tag":109,"props":5231,"children":5232},{"style":293},[5233],{"type":30,"value":1018},{"type":25,"tag":109,"props":5235,"children":5236},{"class":111,"line":2044},[5237,5242,5246,5250],{"type":25,"tag":109,"props":5238,"children":5239},{"style":302},[5240],{"type":30,"value":5241},"  caption",{"type":25,"tag":109,"props":5243,"children":5244},{"style":293},[5245],{"type":30,"value":310},{"type":25,"tag":109,"props":5247,"children":5248},{"style":995},[5249],{"type":30,"value":1008},{"type":25,"tag":109,"props":5251,"children":5252},{"style":293},[5253],{"type":30,"value":1018},{"type":25,"tag":109,"props":5255,"children":5256},{"class":111,"line":2058},[5257,5262,5266],{"type":25,"tag":109,"props":5258,"children":5259},{"style":302},[5260],{"type":30,"value":5261},"  allow",{"type":25,"tag":109,"props":5263,"children":5264},{"style":293},[5265],{"type":30,"value":310},{"type":25,"tag":109,"props":5267,"children":5268},{"style":293},[5269],{"type":30,"value":975},{"type":25,"tag":109,"props":5271,"children":5272},{"class":111,"line":2111},[5273,5277,5281,5285],{"type":25,"tag":109,"props":5274,"children":5275},{"style":302},[5276],{"type":30,"value":984},{"type":25,"tag":109,"props":5278,"children":5279},{"style":293},[5280],{"type":30,"value":310},{"type":25,"tag":109,"props":5282,"children":5283},{"style":995},[5284],{"type":30,"value":1008},{"type":25,"tag":109,"props":5286,"children":5287},{"style":293},[5288],{"type":30,"value":1018},{"type":25,"tag":109,"props":5290,"children":5291},{"class":111,"line":2145},[5292,5296,5300,5304,5309],{"type":25,"tag":109,"props":5293,"children":5294},{"style":302},[5295],{"type":30,"value":1027},{"type":25,"tag":109,"props":5297,"children":5298},{"style":293},[5299],{"type":30,"value":310},{"type":25,"tag":109,"props":5301,"children":5302},{"style":318},[5303],{"type":30,"value":1178},{"type":25,"tag":109,"props":5305,"children":5306},{"style":225},[5307],{"type":30,"value":5308},"accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture",{"type":25,"tag":109,"props":5310,"children":5311},{"style":318},[5312],{"type":30,"value":5075},{"type":25,"tag":109,"props":5314,"children":5315},{"class":111,"line":2190},[5316],{"type":25,"tag":109,"props":5317,"children":5318},{"style":293},[5319],{"type":30,"value":1046},{"type":25,"tag":109,"props":5321,"children":5322},{"class":111,"line":2198},[5323,5328,5332],{"type":25,"tag":109,"props":5324,"children":5325},{"style":302},[5326],{"type":30,"value":5327},"  allowFullscreen",{"type":25,"tag":109,"props":5329,"children":5330},{"style":293},[5331],{"type":30,"value":310},{"type":25,"tag":109,"props":5333,"children":5334},{"style":293},[5335],{"type":30,"value":975},{"type":25,"tag":109,"props":5337,"children":5338},{"class":111,"line":2206},[5339,5343,5347,5351],{"type":25,"tag":109,"props":5340,"children":5341},{"style":302},[5342],{"type":30,"value":984},{"type":25,"tag":109,"props":5344,"children":5345},{"style":293},[5346],{"type":30,"value":310},{"type":25,"tag":109,"props":5348,"children":5349},{"style":995},[5350],{"type":30,"value":1349},{"type":25,"tag":109,"props":5352,"children":5353},{"style":293},[5354],{"type":30,"value":1018},{"type":25,"tag":109,"props":5356,"children":5357},{"class":111,"line":2214},[5358,5362,5366],{"type":25,"tag":109,"props":5359,"children":5360},{"style":302},[5361],{"type":30,"value":1027},{"type":25,"tag":109,"props":5363,"children":5364},{"style":293},[5365],{"type":30,"value":310},{"type":25,"tag":109,"props":5367,"children":5368},{"style":1368},[5369],{"type":30,"value":1371},{"type":25,"tag":109,"props":5371,"children":5372},{"class":111,"line":2290},[5373],{"type":25,"tag":109,"props":5374,"children":5375},{"style":293},[5376],{"type":30,"value":1503},{"type":25,"tag":109,"props":5378,"children":5379},{"class":111,"line":2298},[5380,5384],{"type":25,"tag":109,"props":5381,"children":5382},{"style":293},[5383],{"type":30,"value":343},{"type":25,"tag":109,"props":5385,"children":5386},{"style":116},[5387],{"type":30,"value":348},{"type":25,"tag":109,"props":5389,"children":5390},{"class":111,"line":2335},[5391],{"type":25,"tag":109,"props":5392,"children":5393},{"emptyLinePlaceholder":599},[5394],{"type":30,"value":602},{"type":25,"tag":109,"props":5396,"children":5397},{"class":111,"line":2384},[5398,5402,5407,5411,5415,5419,5424],{"type":25,"tag":109,"props":5399,"children":5400},{"style":929},[5401],{"type":30,"value":932},{"type":25,"tag":109,"props":5403,"children":5404},{"style":935},[5405],{"type":30,"value":5406}," embedHtml",{"type":25,"tag":109,"props":5408,"children":5409},{"style":941},[5410],{"type":30,"value":944},{"type":25,"tag":109,"props":5412,"children":5413},{"style":282},[5414],{"type":30,"value":1987},{"type":25,"tag":109,"props":5416,"children":5417},{"style":116},[5418],{"type":30,"value":290},{"type":25,"tag":109,"props":5420,"children":5421},{"style":318},[5422],{"type":30,"value":5423},"''",{"type":25,"tag":109,"props":5425,"children":5426},{"style":116},[5427],{"type":30,"value":348},{"type":25,"tag":109,"props":5429,"children":5430},{"class":111,"line":2410},[5431],{"type":25,"tag":109,"props":5432,"children":5433},{"emptyLinePlaceholder":599},[5434],{"type":30,"value":602},{"type":25,"tag":109,"props":5436,"children":5437},{"class":111,"line":2418},[5438,5442,5447,5451,5455,5459,5463,5467],{"type":25,"tag":109,"props":5439,"children":5440},{"style":929},[5441],{"type":30,"value":932},{"type":25,"tag":109,"props":5443,"children":5444},{"style":935},[5445],{"type":30,"value":5446}," containerStyle",{"type":25,"tag":109,"props":5448,"children":5449},{"style":941},[5450],{"type":30,"value":944},{"type":25,"tag":109,"props":5452,"children":5453},{"style":282},[5454],{"type":30,"value":2233},{"type":25,"tag":109,"props":5456,"children":5457},{"style":116},[5458],{"type":30,"value":290},{"type":25,"tag":109,"props":5460,"children":5461},{"style":293},[5462],{"type":30,"value":2242},{"type":25,"tag":109,"props":5464,"children":5465},{"style":929},[5466],{"type":30,"value":1231},{"type":25,"tag":109,"props":5468,"children":5469},{"style":293},[5470],{"type":30,"value":975},{"type":25,"tag":109,"props":5472,"children":5473},{"class":111,"line":2455},[5474,5478,5482,5486,5490,5495,5499],{"type":25,"tag":109,"props":5475,"children":5476},{"style":271},[5477],{"type":30,"value":1711},{"type":25,"tag":109,"props":5479,"children":5480},{"style":1650},[5481],{"type":30,"value":1215},{"type":25,"tag":109,"props":5483,"children":5484},{"style":935},[5485],{"type":30,"value":2005},{"type":25,"tag":109,"props":5487,"children":5488},{"style":293},[5489],{"type":30,"value":1290},{"type":25,"tag":109,"props":5491,"children":5492},{"style":995},[5493],{"type":30,"value":5494},"aspectRatio",{"type":25,"tag":109,"props":5496,"children":5497},{"style":1650},[5498],{"type":30,"value":1794},{"type":25,"tag":109,"props":5500,"children":5501},{"style":293},[5502],{"type":30,"value":296},{"type":25,"tag":109,"props":5504,"children":5505},{"class":111,"line":2492},[5506,5511],{"type":25,"tag":109,"props":5507,"children":5508},{"style":271},[5509],{"type":30,"value":5510},"    return",{"type":25,"tag":109,"props":5512,"children":5513},{"style":293},[5514],{"type":30,"value":975},{"type":25,"tag":109,"props":5516,"children":5517},{"class":111,"line":2500},[5518,5523,5527,5531,5535,5539],{"type":25,"tag":109,"props":5519,"children":5520},{"style":302},[5521],{"type":30,"value":5522},"      aspectRatio",{"type":25,"tag":109,"props":5524,"children":5525},{"style":293},[5526],{"type":30,"value":310},{"type":25,"tag":109,"props":5528,"children":5529},{"style":935},[5530],{"type":30,"value":938},{"type":25,"tag":109,"props":5532,"children":5533},{"style":293},[5534],{"type":30,"value":1290},{"type":25,"tag":109,"props":5536,"children":5537},{"style":995},[5538],{"type":30,"value":5494},{"type":25,"tag":109,"props":5540,"children":5541},{"style":293},[5542],{"type":30,"value":1018},{"type":25,"tag":109,"props":5544,"children":5545},{"class":111,"line":2508},[5546,5551,5555,5559,5563],{"type":25,"tag":109,"props":5547,"children":5548},{"style":302},[5549],{"type":30,"value":5550},"      width",{"type":25,"tag":109,"props":5552,"children":5553},{"style":293},[5554],{"type":30,"value":310},{"type":25,"tag":109,"props":5556,"children":5557},{"style":318},[5558],{"type":30,"value":1178},{"type":25,"tag":109,"props":5560,"children":5561},{"style":225},[5562],{"type":30,"value":5070},{"type":25,"tag":109,"props":5564,"children":5565},{"style":318},[5566],{"type":30,"value":5075},{"type":25,"tag":109,"props":5568,"children":5569},{"class":111,"line":2516},[5570],{"type":25,"tag":109,"props":5571,"children":5572},{"style":293},[5573],{"type":30,"value":5574},"    }\n",{"type":25,"tag":109,"props":5576,"children":5577},{"class":111,"line":2525},[5578],{"type":25,"tag":109,"props":5579,"children":5580},{"style":293},[5581],{"type":30,"value":1503},{"type":25,"tag":109,"props":5583,"children":5584},{"class":111,"line":2562},[5585,5589],{"type":25,"tag":109,"props":5586,"children":5587},{"style":271},[5588],{"type":30,"value":1902},{"type":25,"tag":109,"props":5590,"children":5591},{"style":293},[5592],{"type":30,"value":975},{"type":25,"tag":109,"props":5594,"children":5595},{"class":111,"line":2583},[5596,5601,5605,5609,5613,5617],{"type":25,"tag":109,"props":5597,"children":5598},{"style":302},[5599],{"type":30,"value":5600},"    width",{"type":25,"tag":109,"props":5602,"children":5603},{"style":293},[5604],{"type":30,"value":310},{"type":25,"tag":109,"props":5606,"children":5607},{"style":935},[5608],{"type":30,"value":938},{"type":25,"tag":109,"props":5610,"children":5611},{"style":293},[5612],{"type":30,"value":1290},{"type":25,"tag":109,"props":5614,"children":5615},{"style":995},[5616],{"type":30,"value":4255},{"type":25,"tag":109,"props":5618,"children":5619},{"style":293},[5620],{"type":30,"value":1018},{"type":25,"tag":109,"props":5622,"children":5623},{"class":111,"line":2605},[5624,5629,5633,5637,5641],{"type":25,"tag":109,"props":5625,"children":5626},{"style":302},[5627],{"type":30,"value":5628},"    height",{"type":25,"tag":109,"props":5630,"children":5631},{"style":293},[5632],{"type":30,"value":310},{"type":25,"tag":109,"props":5634,"children":5635},{"style":935},[5636],{"type":30,"value":938},{"type":25,"tag":109,"props":5638,"children":5639},{"style":293},[5640],{"type":30,"value":1290},{"type":25,"tag":109,"props":5642,"children":5643},{"style":995},[5644],{"type":30,"value":5645},"height\n",{"type":25,"tag":109,"props":5647,"children":5648},{"class":111,"line":2627},[5649],{"type":25,"tag":109,"props":5650,"children":5651},{"style":293},[5652],{"type":30,"value":1503},{"type":25,"tag":109,"props":5654,"children":5655},{"class":111,"line":2645},[5656,5660],{"type":25,"tag":109,"props":5657,"children":5658},{"style":293},[5659],{"type":30,"value":343},{"type":25,"tag":109,"props":5661,"children":5662},{"style":116},[5663],{"type":30,"value":348},{"type":25,"tag":109,"props":5665,"children":5666},{"class":111,"line":2653},[5667],{"type":25,"tag":109,"props":5668,"children":5669},{"emptyLinePlaceholder":599},[5670],{"type":30,"value":602},{"type":25,"tag":109,"props":5672,"children":5673},{"class":111,"line":2698},[5674],{"type":25,"tag":109,"props":5675,"children":5676},{"style":1194},[5677],{"type":30,"value":5678},"// 解析不同平台的 URL\n",{"type":25,"tag":109,"props":5680,"children":5681},{"class":111,"line":2710},[5682,5686,5691,5695,5699,5703,5707,5711],{"type":25,"tag":109,"props":5683,"children":5684},{"style":929},[5685],{"type":30,"value":932},{"type":25,"tag":109,"props":5687,"children":5688},{"style":935},[5689],{"type":30,"value":5690}," finalUrl",{"type":25,"tag":109,"props":5692,"children":5693},{"style":941},[5694],{"type":30,"value":944},{"type":25,"tag":109,"props":5696,"children":5697},{"style":282},[5698],{"type":30,"value":2233},{"type":25,"tag":109,"props":5700,"children":5701},{"style":116},[5702],{"type":30,"value":290},{"type":25,"tag":109,"props":5704,"children":5705},{"style":293},[5706],{"type":30,"value":2242},{"type":25,"tag":109,"props":5708,"children":5709},{"style":929},[5710],{"type":30,"value":1231},{"type":25,"tag":109,"props":5712,"children":5713},{"style":293},[5714],{"type":30,"value":975},{"type":25,"tag":109,"props":5716,"children":5717},{"class":111,"line":2726},[5718],{"type":25,"tag":109,"props":5719,"children":5720},{"style":1194},[5721],{"type":30,"value":5722},"  // 如果指定了 platform 和 vid\n",{"type":25,"tag":109,"props":5724,"children":5725},{"class":111,"line":2734},[5726,5730,5734,5738,5742,5747,5752,5756,5760,5765,5769],{"type":25,"tag":109,"props":5727,"children":5728},{"style":271},[5729],{"type":30,"value":1711},{"type":25,"tag":109,"props":5731,"children":5732},{"style":1650},[5733],{"type":30,"value":1215},{"type":25,"tag":109,"props":5735,"children":5736},{"style":935},[5737],{"type":30,"value":2005},{"type":25,"tag":109,"props":5739,"children":5740},{"style":293},[5741],{"type":30,"value":1290},{"type":25,"tag":109,"props":5743,"children":5744},{"style":995},[5745],{"type":30,"value":5746},"platform",{"type":25,"tag":109,"props":5748,"children":5749},{"style":941},[5750],{"type":30,"value":5751}," &&",{"type":25,"tag":109,"props":5753,"children":5754},{"style":935},[5755],{"type":30,"value":938},{"type":25,"tag":109,"props":5757,"children":5758},{"style":293},[5759],{"type":30,"value":1290},{"type":25,"tag":109,"props":5761,"children":5762},{"style":995},[5763],{"type":30,"value":5764},"vid",{"type":25,"tag":109,"props":5766,"children":5767},{"style":1650},[5768],{"type":30,"value":1794},{"type":25,"tag":109,"props":5770,"children":5771},{"style":293},[5772],{"type":30,"value":296},{"type":25,"tag":109,"props":5774,"children":5775},{"class":111,"line":4},[5776,5780,5785,5789,5793,5797,5801,5805,5809,5813,5817],{"type":25,"tag":109,"props":5777,"children":5778},{"style":271},[5779],{"type":30,"value":5510},{"type":25,"tag":109,"props":5781,"children":5782},{"style":282},[5783],{"type":30,"value":5784}," getPlatformUrl",{"type":25,"tag":109,"props":5786,"children":5787},{"style":1650},[5788],{"type":30,"value":290},{"type":25,"tag":109,"props":5790,"children":5791},{"style":935},[5792],{"type":30,"value":2005},{"type":25,"tag":109,"props":5794,"children":5795},{"style":293},[5796],{"type":30,"value":1290},{"type":25,"tag":109,"props":5798,"children":5799},{"style":995},[5800],{"type":30,"value":5746},{"type":25,"tag":109,"props":5802,"children":5803},{"style":293},[5804],{"type":30,"value":1003},{"type":25,"tag":109,"props":5806,"children":5807},{"style":935},[5808],{"type":30,"value":938},{"type":25,"tag":109,"props":5810,"children":5811},{"style":293},[5812],{"type":30,"value":1290},{"type":25,"tag":109,"props":5814,"children":5815},{"style":995},[5816],{"type":30,"value":5764},{"type":25,"tag":109,"props":5818,"children":5819},{"style":1650},[5820],{"type":30,"value":348},{"type":25,"tag":109,"props":5822,"children":5823},{"class":111,"line":2774},[5824],{"type":25,"tag":109,"props":5825,"children":5826},{"style":293},[5827],{"type":30,"value":1503},{"type":25,"tag":109,"props":5829,"children":5830},{"class":111,"line":2799},[5831],{"type":25,"tag":109,"props":5832,"children":5833},{"style":1650},[5834],{"type":30,"value":5835},"  \n",{"type":25,"tag":109,"props":5837,"children":5838},{"class":111,"line":2807},[5839],{"type":25,"tag":109,"props":5840,"children":5841},{"style":1194},[5842],{"type":30,"value":5843},"  // 如果提供了完整 URL，尝试自动识别\n",{"type":25,"tag":109,"props":5845,"children":5846},{"class":111,"line":2815},[5847,5851,5855,5859,5863,5868,5872],{"type":25,"tag":109,"props":5848,"children":5849},{"style":271},[5850],{"type":30,"value":1711},{"type":25,"tag":109,"props":5852,"children":5853},{"style":1650},[5854],{"type":30,"value":1215},{"type":25,"tag":109,"props":5856,"children":5857},{"style":935},[5858],{"type":30,"value":2005},{"type":25,"tag":109,"props":5860,"children":5861},{"style":293},[5862],{"type":30,"value":1290},{"type":25,"tag":109,"props":5864,"children":5865},{"style":995},[5866],{"type":30,"value":5867},"url",{"type":25,"tag":109,"props":5869,"children":5870},{"style":1650},[5871],{"type":30,"value":1794},{"type":25,"tag":109,"props":5873,"children":5874},{"style":293},[5875],{"type":30,"value":296},{"type":25,"tag":109,"props":5877,"children":5878},{"class":111,"line":2831},[5879,5883,5888,5892,5896,5900,5904],{"type":25,"tag":109,"props":5880,"children":5881},{"style":271},[5882],{"type":30,"value":5510},{"type":25,"tag":109,"props":5884,"children":5885},{"style":282},[5886],{"type":30,"value":5887}," parseUrl",{"type":25,"tag":109,"props":5889,"children":5890},{"style":1650},[5891],{"type":30,"value":290},{"type":25,"tag":109,"props":5893,"children":5894},{"style":935},[5895],{"type":30,"value":2005},{"type":25,"tag":109,"props":5897,"children":5898},{"style":293},[5899],{"type":30,"value":1290},{"type":25,"tag":109,"props":5901,"children":5902},{"style":995},[5903],{"type":30,"value":5867},{"type":25,"tag":109,"props":5905,"children":5906},{"style":1650},[5907],{"type":30,"value":348},{"type":25,"tag":109,"props":5909,"children":5910},{"class":111,"line":2852},[5911],{"type":25,"tag":109,"props":5912,"children":5913},{"style":293},[5914],{"type":30,"value":1503},{"type":25,"tag":109,"props":5916,"children":5917},{"class":111,"line":2874},[5918],{"type":25,"tag":109,"props":5919,"children":5920},{"style":1650},[5921],{"type":30,"value":5835},{"type":25,"tag":109,"props":5923,"children":5924},{"class":111,"line":2902},[5925,5929],{"type":25,"tag":109,"props":5926,"children":5927},{"style":271},[5928],{"type":30,"value":1902},{"type":25,"tag":109,"props":5930,"children":5931},{"style":318},[5932],{"type":30,"value":1494},{"type":25,"tag":109,"props":5934,"children":5935},{"class":111,"line":2924},[5936,5940],{"type":25,"tag":109,"props":5937,"children":5938},{"style":293},[5939],{"type":30,"value":343},{"type":25,"tag":109,"props":5941,"children":5942},{"style":116},[5943],{"type":30,"value":348},{"type":25,"tag":109,"props":5945,"children":5946},{"class":111,"line":2932},[5947],{"type":25,"tag":109,"props":5948,"children":5949},{"emptyLinePlaceholder":599},[5950],{"type":30,"value":602},{"type":25,"tag":109,"props":5952,"children":5953},{"class":111,"line":2940},[5954,5958,5962,5966,5970,5974,5978,5983,5987,5991],{"type":25,"tag":109,"props":5955,"children":5956},{"style":929},[5957],{"type":30,"value":932},{"type":25,"tag":109,"props":5959,"children":5960},{"style":1587},[5961],{"type":30,"value":5784},{"type":25,"tag":109,"props":5963,"children":5964},{"style":941},[5965],{"type":30,"value":944},{"type":25,"tag":109,"props":5967,"children":5968},{"style":293},[5969],{"type":30,"value":1215},{"type":25,"tag":109,"props":5971,"children":5972},{"style":1218},[5973],{"type":30,"value":5746},{"type":25,"tag":109,"props":5975,"children":5976},{"style":293},[5977],{"type":30,"value":1003},{"type":25,"tag":109,"props":5979,"children":5980},{"style":1218},[5981],{"type":30,"value":5982}," vid",{"type":25,"tag":109,"props":5984,"children":5985},{"style":293},[5986],{"type":30,"value":1226},{"type":25,"tag":109,"props":5988,"children":5989},{"style":929},[5990],{"type":30,"value":1231},{"type":25,"tag":109,"props":5992,"children":5993},{"style":293},[5994],{"type":30,"value":975},{"type":25,"tag":109,"props":5996,"children":5997},{"class":111,"line":2957},[5998,6002,6007,6011],{"type":25,"tag":109,"props":5999,"children":6000},{"style":929},[6001],{"type":30,"value":1633},{"type":25,"tag":109,"props":6003,"children":6004},{"style":935},[6005],{"type":30,"value":6006}," platforms",{"type":25,"tag":109,"props":6008,"children":6009},{"style":941},[6010],{"type":30,"value":944},{"type":25,"tag":109,"props":6012,"children":6013},{"style":293},[6014],{"type":30,"value":975},{"type":25,"tag":109,"props":6016,"children":6017},{"class":111,"line":2977},[6018,6023,6027,6031,6036,6040,6044],{"type":25,"tag":109,"props":6019,"children":6020},{"style":282},[6021],{"type":30,"value":6022},"    bilibili",{"type":25,"tag":109,"props":6024,"children":6025},{"style":293},[6026],{"type":30,"value":310},{"type":25,"tag":109,"props":6028,"children":6029},{"style":293},[6030],{"type":30,"value":1215},{"type":25,"tag":109,"props":6032,"children":6033},{"style":1218},[6034],{"type":30,"value":6035},"id",{"type":25,"tag":109,"props":6037,"children":6038},{"style":293},[6039],{"type":30,"value":1226},{"type":25,"tag":109,"props":6041,"children":6042},{"style":929},[6043],{"type":30,"value":1231},{"type":25,"tag":109,"props":6045,"children":6046},{"style":293},[6047],{"type":30,"value":975},{"type":25,"tag":109,"props":6049,"children":6050},{"class":111,"line":2997},[6051],{"type":25,"tag":109,"props":6052,"children":6053},{"style":1194},[6054],{"type":30,"value":6055},"      // 支持 BV 号\n",{"type":25,"tag":109,"props":6057,"children":6058},{"class":111,"line":3023},[6059,6064,6068,6072,6076,6081,6085,6089,6094,6098,6102],{"type":25,"tag":109,"props":6060,"children":6061},{"style":271},[6062],{"type":30,"value":6063},"      if",{"type":25,"tag":109,"props":6065,"children":6066},{"style":1650},[6067],{"type":30,"value":1215},{"type":25,"tag":109,"props":6069,"children":6070},{"style":935},[6071],{"type":30,"value":6035},{"type":25,"tag":109,"props":6073,"children":6074},{"style":293},[6075],{"type":30,"value":1290},{"type":25,"tag":109,"props":6077,"children":6078},{"style":282},[6079],{"type":30,"value":6080},"startsWith",{"type":25,"tag":109,"props":6082,"children":6083},{"style":1650},[6084],{"type":30,"value":290},{"type":25,"tag":109,"props":6086,"children":6087},{"style":318},[6088],{"type":30,"value":321},{"type":25,"tag":109,"props":6090,"children":6091},{"style":225},[6092],{"type":30,"value":6093},"BV",{"type":25,"tag":109,"props":6095,"children":6096},{"style":318},[6097],{"type":30,"value":321},{"type":25,"tag":109,"props":6099,"children":6100},{"style":1650},[6101],{"type":30,"value":1742},{"type":25,"tag":109,"props":6103,"children":6104},{"style":293},[6105],{"type":30,"value":296},{"type":25,"tag":109,"props":6107,"children":6108},{"class":111,"line":3043},[6109,6114,6119,6124,6129,6133,6137,6142],{"type":25,"tag":109,"props":6110,"children":6111},{"style":271},[6112],{"type":30,"value":6113},"        return",{"type":25,"tag":109,"props":6115,"children":6116},{"style":318},[6117],{"type":30,"value":6118}," `",{"type":25,"tag":109,"props":6120,"children":6121},{"style":225},[6122],{"type":30,"value":6123},"https://player.bilibili.com/player.html?bvid=",{"type":25,"tag":109,"props":6125,"children":6126},{"style":1797},[6127],{"type":30,"value":6128},"${",{"type":25,"tag":109,"props":6130,"children":6131},{"style":995},[6132],{"type":30,"value":6035},{"type":25,"tag":109,"props":6134,"children":6135},{"style":1797},[6136],{"type":30,"value":343},{"type":25,"tag":109,"props":6138,"children":6139},{"style":225},[6140],{"type":30,"value":6141},"&high_quality=1&danmaku=0&autoplay=0",{"type":25,"tag":109,"props":6143,"children":6144},{"style":318},[6145],{"type":30,"value":6146},"`\n",{"type":25,"tag":109,"props":6148,"children":6149},{"class":111,"line":3051},[6150],{"type":25,"tag":109,"props":6151,"children":6152},{"style":293},[6153],{"type":30,"value":6154},"      }\n",{"type":25,"tag":109,"props":6156,"children":6157},{"class":111,"line":3059},[6158],{"type":25,"tag":109,"props":6159,"children":6160},{"style":1194},[6161],{"type":30,"value":6162},"      // 支持 av 号\n",{"type":25,"tag":109,"props":6164,"children":6165},{"class":111,"line":3076},[6166,6171,6175,6180,6184,6188,6192,6196],{"type":25,"tag":109,"props":6167,"children":6168},{"style":271},[6169],{"type":30,"value":6170},"      return",{"type":25,"tag":109,"props":6172,"children":6173},{"style":318},[6174],{"type":30,"value":6118},{"type":25,"tag":109,"props":6176,"children":6177},{"style":225},[6178],{"type":30,"value":6179},"https://player.bilibili.com/player.html?aid=",{"type":25,"tag":109,"props":6181,"children":6182},{"style":1797},[6183],{"type":30,"value":6128},{"type":25,"tag":109,"props":6185,"children":6186},{"style":995},[6187],{"type":30,"value":6035},{"type":25,"tag":109,"props":6189,"children":6190},{"style":1797},[6191],{"type":30,"value":343},{"type":25,"tag":109,"props":6193,"children":6194},{"style":225},[6195],{"type":30,"value":6141},{"type":25,"tag":109,"props":6197,"children":6198},{"style":318},[6199],{"type":30,"value":6146},{"type":25,"tag":109,"props":6201,"children":6202},{"class":111,"line":3096},[6203],{"type":25,"tag":109,"props":6204,"children":6205},{"style":293},[6206],{"type":30,"value":6207},"    },\n",{"type":25,"tag":109,"props":6209,"children":6210},{"class":111,"line":3116},[6211,6216,6220,6224,6228,6232,6236,6240,6245,6249,6253,6257,6262,6267],{"type":25,"tag":109,"props":6212,"children":6213},{"style":282},[6214],{"type":30,"value":6215},"    youtube",{"type":25,"tag":109,"props":6217,"children":6218},{"style":293},[6219],{"type":30,"value":310},{"type":25,"tag":109,"props":6221,"children":6222},{"style":293},[6223],{"type":30,"value":1215},{"type":25,"tag":109,"props":6225,"children":6226},{"style":1218},[6227],{"type":30,"value":6035},{"type":25,"tag":109,"props":6229,"children":6230},{"style":293},[6231],{"type":30,"value":1226},{"type":25,"tag":109,"props":6233,"children":6234},{"style":929},[6235],{"type":30,"value":1231},{"type":25,"tag":109,"props":6237,"children":6238},{"style":318},[6239],{"type":30,"value":6118},{"type":25,"tag":109,"props":6241,"children":6242},{"style":225},[6243],{"type":30,"value":6244},"https://www.youtube.com/embed/",{"type":25,"tag":109,"props":6246,"children":6247},{"style":1797},[6248],{"type":30,"value":6128},{"type":25,"tag":109,"props":6250,"children":6251},{"style":995},[6252],{"type":30,"value":6035},{"type":25,"tag":109,"props":6254,"children":6255},{"style":1797},[6256],{"type":30,"value":343},{"type":25,"tag":109,"props":6258,"children":6259},{"style":225},[6260],{"type":30,"value":6261},"?autoplay=0",{"type":25,"tag":109,"props":6263,"children":6264},{"style":318},[6265],{"type":30,"value":6266},"`",{"type":25,"tag":109,"props":6268,"children":6269},{"style":293},[6270],{"type":30,"value":1018},{"type":25,"tag":109,"props":6272,"children":6273},{"class":111,"line":3141},[6274,6279,6283,6287,6291,6295,6299,6303,6308,6312,6316,6320,6325,6329],{"type":25,"tag":109,"props":6275,"children":6276},{"style":282},[6277],{"type":30,"value":6278},"    codepen",{"type":25,"tag":109,"props":6280,"children":6281},{"style":293},[6282],{"type":30,"value":310},{"type":25,"tag":109,"props":6284,"children":6285},{"style":293},[6286],{"type":30,"value":1215},{"type":25,"tag":109,"props":6288,"children":6289},{"style":1218},[6290],{"type":30,"value":6035},{"type":25,"tag":109,"props":6292,"children":6293},{"style":293},[6294],{"type":30,"value":1226},{"type":25,"tag":109,"props":6296,"children":6297},{"style":929},[6298],{"type":30,"value":1231},{"type":25,"tag":109,"props":6300,"children":6301},{"style":318},[6302],{"type":30,"value":6118},{"type":25,"tag":109,"props":6304,"children":6305},{"style":225},[6306],{"type":30,"value":6307},"https://codepen.io/",{"type":25,"tag":109,"props":6309,"children":6310},{"style":1797},[6311],{"type":30,"value":6128},{"type":25,"tag":109,"props":6313,"children":6314},{"style":995},[6315],{"type":30,"value":6035},{"type":25,"tag":109,"props":6317,"children":6318},{"style":1797},[6319],{"type":30,"value":343},{"type":25,"tag":109,"props":6321,"children":6322},{"style":225},[6323],{"type":30,"value":6324},"/embed",{"type":25,"tag":109,"props":6326,"children":6327},{"style":318},[6328],{"type":30,"value":6266},{"type":25,"tag":109,"props":6330,"children":6331},{"style":293},[6332],{"type":30,"value":1018},{"type":25,"tag":109,"props":6334,"children":6335},{"class":111,"line":3161},[6336,6341,6345,6349,6353,6357,6361,6365,6370,6374,6378,6382,6386],{"type":25,"tag":109,"props":6337,"children":6338},{"style":282},[6339],{"type":30,"value":6340},"    codesandbox",{"type":25,"tag":109,"props":6342,"children":6343},{"style":293},[6344],{"type":30,"value":310},{"type":25,"tag":109,"props":6346,"children":6347},{"style":293},[6348],{"type":30,"value":1215},{"type":25,"tag":109,"props":6350,"children":6351},{"style":1218},[6352],{"type":30,"value":6035},{"type":25,"tag":109,"props":6354,"children":6355},{"style":293},[6356],{"type":30,"value":1226},{"type":25,"tag":109,"props":6358,"children":6359},{"style":929},[6360],{"type":30,"value":1231},{"type":25,"tag":109,"props":6362,"children":6363},{"style":318},[6364],{"type":30,"value":6118},{"type":25,"tag":109,"props":6366,"children":6367},{"style":225},[6368],{"type":30,"value":6369},"https://codesandbox.io/embed/",{"type":25,"tag":109,"props":6371,"children":6372},{"style":1797},[6373],{"type":30,"value":6128},{"type":25,"tag":109,"props":6375,"children":6376},{"style":995},[6377],{"type":30,"value":6035},{"type":25,"tag":109,"props":6379,"children":6380},{"style":1797},[6381],{"type":30,"value":343},{"type":25,"tag":109,"props":6383,"children":6384},{"style":318},[6385],{"type":30,"value":6266},{"type":25,"tag":109,"props":6387,"children":6388},{"style":293},[6389],{"type":30,"value":1018},{"type":25,"tag":109,"props":6391,"children":6392},{"class":111,"line":3169},[6393,6398,6402,6406,6410,6414,6418,6422,6427,6431,6435,6439,6444,6448],{"type":25,"tag":109,"props":6394,"children":6395},{"style":282},[6396],{"type":30,"value":6397},"    stackblitz",{"type":25,"tag":109,"props":6399,"children":6400},{"style":293},[6401],{"type":30,"value":310},{"type":25,"tag":109,"props":6403,"children":6404},{"style":293},[6405],{"type":30,"value":1215},{"type":25,"tag":109,"props":6407,"children":6408},{"style":1218},[6409],{"type":30,"value":6035},{"type":25,"tag":109,"props":6411,"children":6412},{"style":293},[6413],{"type":30,"value":1226},{"type":25,"tag":109,"props":6415,"children":6416},{"style":929},[6417],{"type":30,"value":1231},{"type":25,"tag":109,"props":6419,"children":6420},{"style":318},[6421],{"type":30,"value":6118},{"type":25,"tag":109,"props":6423,"children":6424},{"style":225},[6425],{"type":30,"value":6426},"https://stackblitz.com/edit/",{"type":25,"tag":109,"props":6428,"children":6429},{"style":1797},[6430],{"type":30,"value":6128},{"type":25,"tag":109,"props":6432,"children":6433},{"style":995},[6434],{"type":30,"value":6035},{"type":25,"tag":109,"props":6436,"children":6437},{"style":1797},[6438],{"type":30,"value":343},{"type":25,"tag":109,"props":6440,"children":6441},{"style":225},[6442],{"type":30,"value":6443},"?embed=1",{"type":25,"tag":109,"props":6445,"children":6446},{"style":318},[6447],{"type":30,"value":6266},{"type":25,"tag":109,"props":6449,"children":6450},{"style":293},[6451],{"type":30,"value":1018},{"type":25,"tag":109,"props":6453,"children":6454},{"class":111,"line":3177},[6455],{"type":25,"tag":109,"props":6456,"children":6457},{"style":293},[6458],{"type":30,"value":1503},{"type":25,"tag":109,"props":6460,"children":6461},{"class":111,"line":3186},[6462],{"type":25,"tag":109,"props":6463,"children":6464},{"style":1650},[6465],{"type":30,"value":5835},{"type":25,"tag":109,"props":6467,"children":6468},{"class":111,"line":3195},[6469,6473,6478,6482,6486,6490,6494,6498,6503],{"type":25,"tag":109,"props":6470,"children":6471},{"style":929},[6472],{"type":30,"value":1633},{"type":25,"tag":109,"props":6474,"children":6475},{"style":935},[6476],{"type":30,"value":6477}," handler",{"type":25,"tag":109,"props":6479,"children":6480},{"style":941},[6481],{"type":30,"value":944},{"type":25,"tag":109,"props":6483,"children":6484},{"style":995},[6485],{"type":30,"value":6006},{"type":25,"tag":109,"props":6487,"children":6488},{"style":1650},[6489],{"type":30,"value":2667},{"type":25,"tag":109,"props":6491,"children":6492},{"style":935},[6493],{"type":30,"value":5746},{"type":25,"tag":109,"props":6495,"children":6496},{"style":293},[6497],{"type":30,"value":1290},{"type":25,"tag":109,"props":6499,"children":6500},{"style":282},[6501],{"type":30,"value":6502},"toLowerCase",{"type":25,"tag":109,"props":6504,"children":6505},{"style":1650},[6506],{"type":30,"value":6507},"()]\n",{"type":25,"tag":109,"props":6509,"children":6510},{"class":111,"line":3204},[6511,6515,6519,6524,6528,6532,6536,6540,6544],{"type":25,"tag":109,"props":6512,"children":6513},{"style":271},[6514],{"type":30,"value":1902},{"type":25,"tag":109,"props":6516,"children":6517},{"style":995},[6518],{"type":30,"value":6477},{"type":25,"tag":109,"props":6520,"children":6521},{"style":1797},[6522],{"type":30,"value":6523}," ?",{"type":25,"tag":109,"props":6525,"children":6526},{"style":282},[6527],{"type":30,"value":6477},{"type":25,"tag":109,"props":6529,"children":6530},{"style":1650},[6531],{"type":30,"value":290},{"type":25,"tag":109,"props":6533,"children":6534},{"style":995},[6535],{"type":30,"value":5764},{"type":25,"tag":109,"props":6537,"children":6538},{"style":1650},[6539],{"type":30,"value":1794},{"type":25,"tag":109,"props":6541,"children":6542},{"style":1797},[6543],{"type":30,"value":310},{"type":25,"tag":109,"props":6545,"children":6546},{"style":318},[6547],{"type":30,"value":1494},{"type":25,"tag":109,"props":6549,"children":6550},{"class":111,"line":3213},[6551],{"type":25,"tag":109,"props":6552,"children":6553},{"style":293},[6554],{"type":30,"value":1957},{"type":25,"tag":109,"props":6556,"children":6557},{"class":111,"line":3221},[6558],{"type":25,"tag":109,"props":6559,"children":6560},{"emptyLinePlaceholder":599},[6561],{"type":30,"value":602},{"type":25,"tag":109,"props":6563,"children":6564},{"class":111,"line":3229},[6565,6569,6573,6577,6581,6585,6589,6593],{"type":25,"tag":109,"props":6566,"children":6567},{"style":929},[6568],{"type":30,"value":932},{"type":25,"tag":109,"props":6570,"children":6571},{"style":1587},[6572],{"type":30,"value":5887},{"type":25,"tag":109,"props":6574,"children":6575},{"style":941},[6576],{"type":30,"value":944},{"type":25,"tag":109,"props":6578,"children":6579},{"style":293},[6580],{"type":30,"value":1215},{"type":25,"tag":109,"props":6582,"children":6583},{"style":1218},[6584],{"type":30,"value":5867},{"type":25,"tag":109,"props":6586,"children":6587},{"style":293},[6588],{"type":30,"value":1226},{"type":25,"tag":109,"props":6590,"children":6591},{"style":929},[6592],{"type":30,"value":1231},{"type":25,"tag":109,"props":6594,"children":6595},{"style":293},[6596],{"type":30,"value":975},{"type":25,"tag":109,"props":6598,"children":6599},{"class":111,"line":3238},[6600,6605],{"type":25,"tag":109,"props":6601,"children":6602},{"style":271},[6603],{"type":30,"value":6604},"  try",{"type":25,"tag":109,"props":6606,"children":6607},{"style":293},[6608],{"type":30,"value":975},{"type":25,"tag":109,"props":6610,"children":6611},{"class":111,"line":3246},[6612],{"type":25,"tag":109,"props":6613,"children":6614},{"style":1194},[6615],{"type":30,"value":6616},"    // Bilibili\n",{"type":25,"tag":109,"props":6618,"children":6619},{"class":111,"line":3254},[6620,6625,6629,6633,6637,6641,6645,6649,6654,6658,6662],{"type":25,"tag":109,"props":6621,"children":6622},{"style":271},[6623],{"type":30,"value":6624},"    if",{"type":25,"tag":109,"props":6626,"children":6627},{"style":1650},[6628],{"type":30,"value":1215},{"type":25,"tag":109,"props":6630,"children":6631},{"style":935},[6632],{"type":30,"value":5867},{"type":25,"tag":109,"props":6634,"children":6635},{"style":293},[6636],{"type":30,"value":1290},{"type":25,"tag":109,"props":6638,"children":6639},{"style":282},[6640],{"type":30,"value":1295},{"type":25,"tag":109,"props":6642,"children":6643},{"style":1650},[6644],{"type":30,"value":290},{"type":25,"tag":109,"props":6646,"children":6647},{"style":318},[6648],{"type":30,"value":321},{"type":25,"tag":109,"props":6650,"children":6651},{"style":225},[6652],{"type":30,"value":6653},"bilibili.com",{"type":25,"tag":109,"props":6655,"children":6656},{"style":318},[6657],{"type":30,"value":321},{"type":25,"tag":109,"props":6659,"children":6660},{"style":1650},[6661],{"type":30,"value":1742},{"type":25,"tag":109,"props":6663,"children":6664},{"style":293},[6665],{"type":30,"value":296},{"type":25,"tag":109,"props":6667,"children":6668},{"class":111,"line":3263},[6669,6674,6679,6683,6688,6692,6697,6701,6706,6711,6715,6720,6725,6729],{"type":25,"tag":109,"props":6670,"children":6671},{"style":929},[6672],{"type":30,"value":6673},"      const",{"type":25,"tag":109,"props":6675,"children":6676},{"style":935},[6677],{"type":30,"value":6678}," bvMatch",{"type":25,"tag":109,"props":6680,"children":6681},{"style":941},[6682],{"type":30,"value":944},{"type":25,"tag":109,"props":6684,"children":6685},{"style":935},[6686],{"type":30,"value":6687}," url",{"type":25,"tag":109,"props":6689,"children":6690},{"style":293},[6691],{"type":30,"value":1290},{"type":25,"tag":109,"props":6693,"children":6694},{"style":282},[6695],{"type":30,"value":6696},"match",{"type":25,"tag":109,"props":6698,"children":6699},{"style":1650},[6700],{"type":30,"value":290},{"type":25,"tag":109,"props":6702,"children":6704},{"style":6703},"--shiki-default:#89DDFF;--shiki-dark:#E06C75",[6705],{"type":30,"value":1943},{"type":25,"tag":109,"props":6707,"children":6709},{"style":6708},"--shiki-default:#C3E88D;--shiki-dark:#E06C75",[6710],{"type":30,"value":6093},{"type":25,"tag":109,"props":6712,"children":6713},{"style":2759},[6714],{"type":30,"value":2667},{"type":25,"tag":109,"props":6716,"children":6717},{"style":6708},[6718],{"type":30,"value":6719},"\\w",{"type":25,"tag":109,"props":6721,"children":6722},{"style":2759},[6723],{"type":30,"value":6724},"]+",{"type":25,"tag":109,"props":6726,"children":6727},{"style":6703},[6728],{"type":30,"value":1943},{"type":25,"tag":109,"props":6730,"children":6731},{"style":1650},[6732],{"type":30,"value":348},{"type":25,"tag":109,"props":6734,"children":6736},{"class":111,"line":6735},132,[6737,6741,6745,6750,6754],{"type":25,"tag":109,"props":6738,"children":6739},{"style":271},[6740],{"type":30,"value":6063},{"type":25,"tag":109,"props":6742,"children":6743},{"style":1650},[6744],{"type":30,"value":1215},{"type":25,"tag":109,"props":6746,"children":6747},{"style":995},[6748],{"type":30,"value":6749},"bvMatch",{"type":25,"tag":109,"props":6751,"children":6752},{"style":1650},[6753],{"type":30,"value":1794},{"type":25,"tag":109,"props":6755,"children":6756},{"style":293},[6757],{"type":30,"value":296},{"type":25,"tag":109,"props":6759,"children":6761},{"class":111,"line":6760},133,[6762,6766,6770,6774,6778,6782,6786,6790,6794,6798,6802],{"type":25,"tag":109,"props":6763,"children":6764},{"style":271},[6765],{"type":30,"value":6113},{"type":25,"tag":109,"props":6767,"children":6768},{"style":318},[6769],{"type":30,"value":6118},{"type":25,"tag":109,"props":6771,"children":6772},{"style":225},[6773],{"type":30,"value":6123},{"type":25,"tag":109,"props":6775,"children":6776},{"style":1797},[6777],{"type":30,"value":6128},{"type":25,"tag":109,"props":6779,"children":6780},{"style":995},[6781],{"type":30,"value":6749},{"type":25,"tag":109,"props":6783,"children":6784},{"style":116},[6785],{"type":30,"value":2667},{"type":25,"tag":109,"props":6787,"children":6788},{"style":1034},[6789],{"type":30,"value":1855},{"type":25,"tag":109,"props":6791,"children":6792},{"style":116},[6793],{"type":30,"value":1013},{"type":25,"tag":109,"props":6795,"children":6796},{"style":1797},[6797],{"type":30,"value":343},{"type":25,"tag":109,"props":6799,"children":6800},{"style":225},[6801],{"type":30,"value":6141},{"type":25,"tag":109,"props":6803,"children":6804},{"style":318},[6805],{"type":30,"value":6146},{"type":25,"tag":109,"props":6807,"children":6809},{"class":111,"line":6808},134,[6810],{"type":25,"tag":109,"props":6811,"children":6812},{"style":293},[6813],{"type":30,"value":6154},{"type":25,"tag":109,"props":6815,"children":6817},{"class":111,"line":6816},135,[6818,6822,6827,6831,6835,6839,6843,6847,6851,6856,6860,6865,6870,6875],{"type":25,"tag":109,"props":6819,"children":6820},{"style":929},[6821],{"type":30,"value":6673},{"type":25,"tag":109,"props":6823,"children":6824},{"style":935},[6825],{"type":30,"value":6826}," avMatch",{"type":25,"tag":109,"props":6828,"children":6829},{"style":941},[6830],{"type":30,"value":944},{"type":25,"tag":109,"props":6832,"children":6833},{"style":935},[6834],{"type":30,"value":6687},{"type":25,"tag":109,"props":6836,"children":6837},{"style":293},[6838],{"type":30,"value":1290},{"type":25,"tag":109,"props":6840,"children":6841},{"style":282},[6842],{"type":30,"value":6696},{"type":25,"tag":109,"props":6844,"children":6845},{"style":1650},[6846],{"type":30,"value":290},{"type":25,"tag":109,"props":6848,"children":6849},{"style":6703},[6850],{"type":30,"value":1943},{"type":25,"tag":109,"props":6852,"children":6853},{"style":6708},[6854],{"type":30,"value":6855},"av",{"type":25,"tag":109,"props":6857,"children":6858},{"style":6703},[6859],{"type":30,"value":290},{"type":25,"tag":109,"props":6861,"children":6862},{"style":6708},[6863],{"type":30,"value":6864},"\\d",{"type":25,"tag":109,"props":6866,"children":6867},{"style":2759},[6868],{"type":30,"value":6869},"+",{"type":25,"tag":109,"props":6871,"children":6872},{"style":6703},[6873],{"type":30,"value":6874},")/",{"type":25,"tag":109,"props":6876,"children":6877},{"style":1650},[6878],{"type":30,"value":348},{"type":25,"tag":109,"props":6880,"children":6882},{"class":111,"line":6881},136,[6883,6887,6891,6896,6900],{"type":25,"tag":109,"props":6884,"children":6885},{"style":271},[6886],{"type":30,"value":6063},{"type":25,"tag":109,"props":6888,"children":6889},{"style":1650},[6890],{"type":30,"value":1215},{"type":25,"tag":109,"props":6892,"children":6893},{"style":995},[6894],{"type":30,"value":6895},"avMatch",{"type":25,"tag":109,"props":6897,"children":6898},{"style":1650},[6899],{"type":30,"value":1794},{"type":25,"tag":109,"props":6901,"children":6902},{"style":293},[6903],{"type":30,"value":296},{"type":25,"tag":109,"props":6905,"children":6907},{"class":111,"line":6906},137,[6908,6912,6916,6920,6924,6928,6932,6937,6941,6945,6949],{"type":25,"tag":109,"props":6909,"children":6910},{"style":271},[6911],{"type":30,"value":6113},{"type":25,"tag":109,"props":6913,"children":6914},{"style":318},[6915],{"type":30,"value":6118},{"type":25,"tag":109,"props":6917,"children":6918},{"style":225},[6919],{"type":30,"value":6179},{"type":25,"tag":109,"props":6921,"children":6922},{"style":1797},[6923],{"type":30,"value":6128},{"type":25,"tag":109,"props":6925,"children":6926},{"style":995},[6927],{"type":30,"value":6895},{"type":25,"tag":109,"props":6929,"children":6930},{"style":116},[6931],{"type":30,"value":2667},{"type":25,"tag":109,"props":6933,"children":6934},{"style":1034},[6935],{"type":30,"value":6936},"1",{"type":25,"tag":109,"props":6938,"children":6939},{"style":116},[6940],{"type":30,"value":1013},{"type":25,"tag":109,"props":6942,"children":6943},{"style":1797},[6944],{"type":30,"value":343},{"type":25,"tag":109,"props":6946,"children":6947},{"style":225},[6948],{"type":30,"value":6141},{"type":25,"tag":109,"props":6950,"children":6951},{"style":318},[6952],{"type":30,"value":6146},{"type":25,"tag":109,"props":6954,"children":6956},{"class":111,"line":6955},138,[6957],{"type":25,"tag":109,"props":6958,"children":6959},{"style":293},[6960],{"type":30,"value":6154},{"type":25,"tag":109,"props":6962,"children":6964},{"class":111,"line":6963},139,[6965],{"type":25,"tag":109,"props":6966,"children":6967},{"style":293},[6968],{"type":30,"value":5574},{"type":25,"tag":109,"props":6970,"children":6972},{"class":111,"line":6971},140,[6973],{"type":25,"tag":109,"props":6974,"children":6975},{"style":1650},[6976],{"type":30,"value":4670},{"type":25,"tag":109,"props":6978,"children":6980},{"class":111,"line":6979},141,[6981],{"type":25,"tag":109,"props":6982,"children":6983},{"style":1194},[6984],{"type":30,"value":6985},"    // YouTube\n",{"type":25,"tag":109,"props":6987,"children":6989},{"class":111,"line":6988},142,[6990,6994,6998,7002,7006,7010,7014,7018,7023,7027,7031,7035,7039,7043,7047,7051,7055,7060,7064,7068],{"type":25,"tag":109,"props":6991,"children":6992},{"style":271},[6993],{"type":30,"value":6624},{"type":25,"tag":109,"props":6995,"children":6996},{"style":1650},[6997],{"type":30,"value":1215},{"type":25,"tag":109,"props":6999,"children":7000},{"style":935},[7001],{"type":30,"value":5867},{"type":25,"tag":109,"props":7003,"children":7004},{"style":293},[7005],{"type":30,"value":1290},{"type":25,"tag":109,"props":7007,"children":7008},{"style":282},[7009],{"type":30,"value":1295},{"type":25,"tag":109,"props":7011,"children":7012},{"style":1650},[7013],{"type":30,"value":290},{"type":25,"tag":109,"props":7015,"children":7016},{"style":318},[7017],{"type":30,"value":321},{"type":25,"tag":109,"props":7019,"children":7020},{"style":225},[7021],{"type":30,"value":7022},"youtube.com",{"type":25,"tag":109,"props":7024,"children":7025},{"style":318},[7026],{"type":30,"value":321},{"type":25,"tag":109,"props":7028,"children":7029},{"style":1650},[7030],{"type":30,"value":1794},{"type":25,"tag":109,"props":7032,"children":7033},{"style":941},[7034],{"type":30,"value":2690},{"type":25,"tag":109,"props":7036,"children":7037},{"style":935},[7038],{"type":30,"value":6687},{"type":25,"tag":109,"props":7040,"children":7041},{"style":293},[7042],{"type":30,"value":1290},{"type":25,"tag":109,"props":7044,"children":7045},{"style":282},[7046],{"type":30,"value":1295},{"type":25,"tag":109,"props":7048,"children":7049},{"style":1650},[7050],{"type":30,"value":290},{"type":25,"tag":109,"props":7052,"children":7053},{"style":318},[7054],{"type":30,"value":321},{"type":25,"tag":109,"props":7056,"children":7057},{"style":225},[7058],{"type":30,"value":7059},"youtu.be",{"type":25,"tag":109,"props":7061,"children":7062},{"style":318},[7063],{"type":30,"value":321},{"type":25,"tag":109,"props":7065,"children":7066},{"style":1650},[7067],{"type":30,"value":1742},{"type":25,"tag":109,"props":7069,"children":7070},{"style":293},[7071],{"type":30,"value":296},{"type":25,"tag":109,"props":7073,"children":7075},{"class":111,"line":7074},143,[7076,7080,7085,7089,7093,7097,7101,7105,7110,7115,7121,7126,7131,7135,7140,7145,7150,7155,7159,7164,7168,7173,7177,7181,7187,7191,7195],{"type":25,"tag":109,"props":7077,"children":7078},{"style":929},[7079],{"type":30,"value":6673},{"type":25,"tag":109,"props":7081,"children":7082},{"style":935},[7083],{"type":30,"value":7084}," videoIdMatch",{"type":25,"tag":109,"props":7086,"children":7087},{"style":941},[7088],{"type":30,"value":944},{"type":25,"tag":109,"props":7090,"children":7091},{"style":935},[7092],{"type":30,"value":6687},{"type":25,"tag":109,"props":7094,"children":7095},{"style":293},[7096],{"type":30,"value":1290},{"type":25,"tag":109,"props":7098,"children":7099},{"style":282},[7100],{"type":30,"value":6696},{"type":25,"tag":109,"props":7102,"children":7103},{"style":1650},[7104],{"type":30,"value":290},{"type":25,"tag":109,"props":7106,"children":7107},{"style":6703},[7108],{"type":30,"value":7109},"/(?:",{"type":25,"tag":109,"props":7111,"children":7112},{"style":6708},[7113],{"type":30,"value":7114},"youtube",{"type":25,"tag":109,"props":7116,"children":7118},{"style":7117},"--shiki-default:#EEFFFF;--shiki-dark:#56B6C2",[7119],{"type":30,"value":7120},"\\.",{"type":25,"tag":109,"props":7122,"children":7123},{"style":6708},[7124],{"type":30,"value":7125},"com",{"type":25,"tag":109,"props":7127,"children":7128},{"style":7117},[7129],{"type":30,"value":7130},"\\/",{"type":25,"tag":109,"props":7132,"children":7133},{"style":6708},[7134],{"type":30,"value":2050},{"type":25,"tag":109,"props":7136,"children":7137},{"style":7117},[7138],{"type":30,"value":7139},"\\?",{"type":25,"tag":109,"props":7141,"children":7142},{"style":6708},[7143],{"type":30,"value":7144},"v=",{"type":25,"tag":109,"props":7146,"children":7147},{"style":293},[7148],{"type":30,"value":7149},"|",{"type":25,"tag":109,"props":7151,"children":7152},{"style":6708},[7153],{"type":30,"value":7154},"youtu",{"type":25,"tag":109,"props":7156,"children":7157},{"style":7117},[7158],{"type":30,"value":7120},{"type":25,"tag":109,"props":7160,"children":7161},{"style":6708},[7162],{"type":30,"value":7163},"be",{"type":25,"tag":109,"props":7165,"children":7166},{"style":7117},[7167],{"type":30,"value":7130},{"type":25,"tag":109,"props":7169,"children":7170},{"style":6703},[7171],{"type":30,"value":7172},")(",{"type":25,"tag":109,"props":7174,"children":7175},{"style":2759},[7176],{"type":30,"value":2667},{"type":25,"tag":109,"props":7178,"children":7179},{"style":6708},[7180],{"type":30,"value":6719},{"type":25,"tag":109,"props":7182,"children":7184},{"style":7183},"--shiki-default:#C3E88D;--shiki-dark:#D19A66",[7185],{"type":30,"value":7186},"-",{"type":25,"tag":109,"props":7188,"children":7189},{"style":2759},[7190],{"type":30,"value":6724},{"type":25,"tag":109,"props":7192,"children":7193},{"style":6703},[7194],{"type":30,"value":6874},{"type":25,"tag":109,"props":7196,"children":7197},{"style":1650},[7198],{"type":30,"value":348},{"type":25,"tag":109,"props":7200,"children":7202},{"class":111,"line":7201},144,[7203,7207,7211,7216,7220],{"type":25,"tag":109,"props":7204,"children":7205},{"style":271},[7206],{"type":30,"value":6063},{"type":25,"tag":109,"props":7208,"children":7209},{"style":1650},[7210],{"type":30,"value":1215},{"type":25,"tag":109,"props":7212,"children":7213},{"style":995},[7214],{"type":30,"value":7215},"videoIdMatch",{"type":25,"tag":109,"props":7217,"children":7218},{"style":1650},[7219],{"type":30,"value":1794},{"type":25,"tag":109,"props":7221,"children":7222},{"style":293},[7223],{"type":30,"value":296},{"type":25,"tag":109,"props":7225,"children":7227},{"class":111,"line":7226},145,[7228,7232,7236,7240,7244,7248,7252,7256,7260,7264,7268],{"type":25,"tag":109,"props":7229,"children":7230},{"style":271},[7231],{"type":30,"value":6113},{"type":25,"tag":109,"props":7233,"children":7234},{"style":318},[7235],{"type":30,"value":6118},{"type":25,"tag":109,"props":7237,"children":7238},{"style":225},[7239],{"type":30,"value":6244},{"type":25,"tag":109,"props":7241,"children":7242},{"style":1797},[7243],{"type":30,"value":6128},{"type":25,"tag":109,"props":7245,"children":7246},{"style":995},[7247],{"type":30,"value":7215},{"type":25,"tag":109,"props":7249,"children":7250},{"style":116},[7251],{"type":30,"value":2667},{"type":25,"tag":109,"props":7253,"children":7254},{"style":1034},[7255],{"type":30,"value":6936},{"type":25,"tag":109,"props":7257,"children":7258},{"style":116},[7259],{"type":30,"value":1013},{"type":25,"tag":109,"props":7261,"children":7262},{"style":1797},[7263],{"type":30,"value":343},{"type":25,"tag":109,"props":7265,"children":7266},{"style":225},[7267],{"type":30,"value":6261},{"type":25,"tag":109,"props":7269,"children":7270},{"style":318},[7271],{"type":30,"value":6146},{"type":25,"tag":109,"props":7273,"children":7275},{"class":111,"line":7274},146,[7276],{"type":25,"tag":109,"props":7277,"children":7278},{"style":293},[7279],{"type":30,"value":6154},{"type":25,"tag":109,"props":7281,"children":7283},{"class":111,"line":7282},147,[7284],{"type":25,"tag":109,"props":7285,"children":7286},{"style":293},[7287],{"type":30,"value":5574},{"type":25,"tag":109,"props":7289,"children":7291},{"class":111,"line":7290},148,[7292],{"type":25,"tag":109,"props":7293,"children":7294},{"style":1650},[7295],{"type":30,"value":4670},{"type":25,"tag":109,"props":7297,"children":7299},{"class":111,"line":7298},149,[7300],{"type":25,"tag":109,"props":7301,"children":7302},{"style":1194},[7303],{"type":30,"value":7304},"    // CodePen\n",{"type":25,"tag":109,"props":7306,"children":7308},{"class":111,"line":7307},150,[7309,7313,7317,7321,7325,7329,7333,7337,7342,7346,7350],{"type":25,"tag":109,"props":7310,"children":7311},{"style":271},[7312],{"type":30,"value":6624},{"type":25,"tag":109,"props":7314,"children":7315},{"style":1650},[7316],{"type":30,"value":1215},{"type":25,"tag":109,"props":7318,"children":7319},{"style":935},[7320],{"type":30,"value":5867},{"type":25,"tag":109,"props":7322,"children":7323},{"style":293},[7324],{"type":30,"value":1290},{"type":25,"tag":109,"props":7326,"children":7327},{"style":282},[7328],{"type":30,"value":1295},{"type":25,"tag":109,"props":7330,"children":7331},{"style":1650},[7332],{"type":30,"value":290},{"type":25,"tag":109,"props":7334,"children":7335},{"style":318},[7336],{"type":30,"value":321},{"type":25,"tag":109,"props":7338,"children":7339},{"style":225},[7340],{"type":30,"value":7341},"codepen.io",{"type":25,"tag":109,"props":7343,"children":7344},{"style":318},[7345],{"type":30,"value":321},{"type":25,"tag":109,"props":7347,"children":7348},{"style":1650},[7349],{"type":30,"value":1742},{"type":25,"tag":109,"props":7351,"children":7352},{"style":293},[7353],{"type":30,"value":296},{"type":25,"tag":109,"props":7355,"children":7357},{"class":111,"line":7356},151,[7358,7362,7366,7370,7375,7379,7383,7388,7392,7396,7400,7405,7409],{"type":25,"tag":109,"props":7359,"children":7360},{"style":271},[7361],{"type":30,"value":6170},{"type":25,"tag":109,"props":7363,"children":7364},{"style":935},[7365],{"type":30,"value":6687},{"type":25,"tag":109,"props":7367,"children":7368},{"style":293},[7369],{"type":30,"value":1290},{"type":25,"tag":109,"props":7371,"children":7372},{"style":282},[7373],{"type":30,"value":7374},"replace",{"type":25,"tag":109,"props":7376,"children":7377},{"style":1650},[7378],{"type":30,"value":290},{"type":25,"tag":109,"props":7380,"children":7381},{"style":318},[7382],{"type":30,"value":321},{"type":25,"tag":109,"props":7384,"children":7385},{"style":225},[7386],{"type":30,"value":7387},"/pen/",{"type":25,"tag":109,"props":7389,"children":7390},{"style":318},[7391],{"type":30,"value":321},{"type":25,"tag":109,"props":7393,"children":7394},{"style":293},[7395],{"type":30,"value":1003},{"type":25,"tag":109,"props":7397,"children":7398},{"style":318},[7399],{"type":30,"value":1178},{"type":25,"tag":109,"props":7401,"children":7402},{"style":225},[7403],{"type":30,"value":7404},"/embed/",{"type":25,"tag":109,"props":7406,"children":7407},{"style":318},[7408],{"type":30,"value":321},{"type":25,"tag":109,"props":7410,"children":7411},{"style":1650},[7412],{"type":30,"value":348},{"type":25,"tag":109,"props":7414,"children":7416},{"class":111,"line":7415},152,[7417],{"type":25,"tag":109,"props":7418,"children":7419},{"style":293},[7420],{"type":30,"value":5574},{"type":25,"tag":109,"props":7422,"children":7424},{"class":111,"line":7423},153,[7425],{"type":25,"tag":109,"props":7426,"children":7427},{"style":1650},[7428],{"type":30,"value":4670},{"type":25,"tag":109,"props":7430,"children":7432},{"class":111,"line":7431},154,[7433],{"type":25,"tag":109,"props":7434,"children":7435},{"style":1194},[7436],{"type":30,"value":7437},"    // 其他情况直接返回 URL\n",{"type":25,"tag":109,"props":7439,"children":7441},{"class":111,"line":7440},155,[7442,7446],{"type":25,"tag":109,"props":7443,"children":7444},{"style":271},[7445],{"type":30,"value":5510},{"type":25,"tag":109,"props":7447,"children":7448},{"style":995},[7449],{"type":30,"value":7450}," url\n",{"type":25,"tag":109,"props":7452,"children":7454},{"class":111,"line":7453},156,[7455,7460,7465,7469,7474,7478],{"type":25,"tag":109,"props":7456,"children":7457},{"style":293},[7458],{"type":30,"value":7459},"  }",{"type":25,"tag":109,"props":7461,"children":7462},{"style":271},[7463],{"type":30,"value":7464}," catch",{"type":25,"tag":109,"props":7466,"children":7467},{"style":1650},[7468],{"type":30,"value":1215},{"type":25,"tag":109,"props":7470,"children":7471},{"style":995},[7472],{"type":30,"value":7473},"e",{"type":25,"tag":109,"props":7475,"children":7476},{"style":1650},[7477],{"type":30,"value":1794},{"type":25,"tag":109,"props":7479,"children":7480},{"style":293},[7481],{"type":30,"value":296},{"type":25,"tag":109,"props":7483,"children":7485},{"class":111,"line":7484},157,[7486,7491,7495,7500,7504,7508,7513,7517,7521,7526],{"type":25,"tag":109,"props":7487,"children":7488},{"style":935},[7489],{"type":30,"value":7490},"    console",{"type":25,"tag":109,"props":7492,"children":7493},{"style":293},[7494],{"type":30,"value":1290},{"type":25,"tag":109,"props":7496,"children":7497},{"style":282},[7498],{"type":30,"value":7499},"error",{"type":25,"tag":109,"props":7501,"children":7502},{"style":1650},[7503],{"type":30,"value":290},{"type":25,"tag":109,"props":7505,"children":7506},{"style":318},[7507],{"type":30,"value":321},{"type":25,"tag":109,"props":7509,"children":7510},{"style":225},[7511],{"type":30,"value":7512},"解析 URL 失败:",{"type":25,"tag":109,"props":7514,"children":7515},{"style":318},[7516],{"type":30,"value":321},{"type":25,"tag":109,"props":7518,"children":7519},{"style":293},[7520],{"type":30,"value":1003},{"type":25,"tag":109,"props":7522,"children":7523},{"style":995},[7524],{"type":30,"value":7525}," e",{"type":25,"tag":109,"props":7527,"children":7528},{"style":1650},[7529],{"type":30,"value":348},{"type":25,"tag":109,"props":7531,"children":7533},{"class":111,"line":7532},158,[7534,7538],{"type":25,"tag":109,"props":7535,"children":7536},{"style":271},[7537],{"type":30,"value":5510},{"type":25,"tag":109,"props":7539,"children":7540},{"style":318},[7541],{"type":30,"value":1494},{"type":25,"tag":109,"props":7543,"children":7545},{"class":111,"line":7544},159,[7546],{"type":25,"tag":109,"props":7547,"children":7548},{"style":293},[7549],{"type":30,"value":1503},{"type":25,"tag":109,"props":7551,"children":7553},{"class":111,"line":7552},160,[7554],{"type":25,"tag":109,"props":7555,"children":7556},{"style":293},[7557],{"type":30,"value":1957},{"type":25,"tag":109,"props":7559,"children":7561},{"class":111,"line":7560},161,[7562,7566,7570],{"type":25,"tag":109,"props":7563,"children":7564},{"style":293},[7565],{"type":30,"value":876},{"type":25,"tag":109,"props":7567,"children":7568},{"style":302},[7569],{"type":30,"value":905},{"type":25,"tag":109,"props":7571,"children":7572},{"style":293},[7573],{"type":30,"value":427},{"type":25,"tag":109,"props":7575,"children":7577},{"class":111,"line":7576},162,[7578],{"type":25,"tag":109,"props":7579,"children":7580},{"emptyLinePlaceholder":599},[7581],{"type":30,"value":602},{"type":25,"tag":109,"props":7583,"children":7585},{"class":111,"line":7584},163,[7586,7590,7594,7598],{"type":25,"tag":109,"props":7587,"children":7588},{"style":293},[7589],{"type":30,"value":418},{"type":25,"tag":109,"props":7591,"children":7592},{"style":302},[7593],{"type":30,"value":2744},{"type":25,"tag":109,"props":7595,"children":7596},{"style":443},[7597],{"type":30,"value":2749},{"type":25,"tag":109,"props":7599,"children":7600},{"style":293},[7601],{"type":30,"value":427},{"type":25,"tag":109,"props":7603,"children":7605},{"class":111,"line":7604},164,[7606,7610,7615],{"type":25,"tag":109,"props":7607,"children":7608},{"style":2759},[7609],{"type":30,"value":1290},{"type":25,"tag":109,"props":7611,"children":7612},{"style":2764},[7613],{"type":30,"value":7614},"embed-container",{"type":25,"tag":109,"props":7616,"children":7617},{"style":293},[7618],{"type":30,"value":975},{"type":25,"tag":109,"props":7620,"children":7622},{"class":111,"line":7621},165,[7623,7628,7632,7637],{"type":25,"tag":109,"props":7624,"children":7625},{"style":2778},[7626],{"type":30,"value":7627},"  position",{"type":25,"tag":109,"props":7629,"children":7630},{"style":293},[7631],{"type":30,"value":310},{"type":25,"tag":109,"props":7633,"children":7634},{"style":2788},[7635],{"type":30,"value":7636}," relative",{"type":25,"tag":109,"props":7638,"children":7639},{"style":293},[7640],{"type":30,"value":2796},{"type":25,"tag":109,"props":7642,"children":7644},{"class":111,"line":7643},166,[7645,7650,7654,7659,7664],{"type":25,"tag":109,"props":7646,"children":7647},{"style":2778},[7648],{"type":30,"value":7649},"  background",{"type":25,"tag":109,"props":7651,"children":7652},{"style":293},[7653],{"type":30,"value":310},{"type":25,"tag":109,"props":7655,"children":7656},{"style":2759},[7657],{"type":30,"value":7658}," #",{"type":25,"tag":109,"props":7660,"children":7661},{"style":2788},[7662],{"type":30,"value":7663},"000",{"type":25,"tag":109,"props":7665,"children":7666},{"style":293},[7667],{"type":30,"value":2796},{"type":25,"tag":109,"props":7669,"children":7671},{"class":111,"line":7670},167,[7672],{"type":25,"tag":109,"props":7673,"children":7674},{"style":293},[7675],{"type":30,"value":1957},{"type":25,"tag":109,"props":7677,"children":7679},{"class":111,"line":7678},168,[7680],{"type":25,"tag":109,"props":7681,"children":7682},{"emptyLinePlaceholder":599},[7683],{"type":30,"value":602},{"type":25,"tag":109,"props":7685,"children":7687},{"class":111,"line":7686},169,[7688,7692,7696,7702,7708,7712],{"type":25,"tag":109,"props":7689,"children":7690},{"style":2759},[7691],{"type":30,"value":1290},{"type":25,"tag":109,"props":7693,"children":7694},{"style":2764},[7695],{"type":30,"value":4126},{"type":25,"tag":109,"props":7697,"children":7699},{"style":7698},"--shiki-default:#EEFFFF;--shiki-dark:#C678DD",[7700],{"type":30,"value":7701}," :deep(",{"type":25,"tag":109,"props":7703,"children":7705},{"style":7704},"--shiki-default:#FFCB6B;--shiki-dark:#E06C75",[7706],{"type":30,"value":7707},"iframe",{"type":25,"tag":109,"props":7709,"children":7710},{"style":116},[7711],{"type":30,"value":1794},{"type":25,"tag":109,"props":7713,"children":7714},{"style":293},[7715],{"type":30,"value":296},{"type":25,"tag":109,"props":7717,"children":7719},{"class":111,"line":7718},170,[7720,7724,7728,7733,7738],{"type":25,"tag":109,"props":7721,"children":7722},{"style":2778},[7723],{"type":30,"value":5023},{"type":25,"tag":109,"props":7725,"children":7726},{"style":293},[7727],{"type":30,"value":310},{"type":25,"tag":109,"props":7729,"children":7730},{"style":1034},[7731],{"type":30,"value":7732}," 100",{"type":25,"tag":109,"props":7734,"children":7735},{"style":2892},[7736],{"type":30,"value":7737},"%",{"type":25,"tag":109,"props":7739,"children":7740},{"style":293},[7741],{"type":30,"value":2796},{"type":25,"tag":109,"props":7743,"children":7745},{"class":111,"line":7744},171,[7746,7750,7754,7758,7762],{"type":25,"tag":109,"props":7747,"children":7748},{"style":2778},[7749],{"type":30,"value":5090},{"type":25,"tag":109,"props":7751,"children":7752},{"style":293},[7753],{"type":30,"value":310},{"type":25,"tag":109,"props":7755,"children":7756},{"style":1034},[7757],{"type":30,"value":7732},{"type":25,"tag":109,"props":7759,"children":7760},{"style":2892},[7761],{"type":30,"value":7737},{"type":25,"tag":109,"props":7763,"children":7764},{"style":293},[7765],{"type":30,"value":2796},{"type":25,"tag":109,"props":7767,"children":7769},{"class":111,"line":7768},172,[7770],{"type":25,"tag":109,"props":7771,"children":7772},{"style":293},[7773],{"type":30,"value":1957},{"type":25,"tag":109,"props":7775,"children":7777},{"class":111,"line":7776},173,[7778,7782,7786],{"type":25,"tag":109,"props":7779,"children":7780},{"style":293},[7781],{"type":30,"value":876},{"type":25,"tag":109,"props":7783,"children":7784},{"style":302},[7785],{"type":30,"value":2744},{"type":25,"tag":109,"props":7787,"children":7788},{"style":293},[7789],{"type":30,"value":427},{"type":25,"tag":173,"props":7791,"children":7792},{"v-slot:tab-1":19},[7793],{"type":25,"tag":98,"props":7794,"children":7796},{"className":404,"code":7795,"language":406,"meta":19,"style":19},"\u003Ctemplate>\n  \u003Cdiv class=\"github-card-mdc my-6\">\n    \u003Cdiv v-if=\"loading\" class=\"loading-skeleton p-4 bg-white dark:bg-gray-900 border border-gray-200 dark:border-gray-700 rounded-lg\">\n      \u003Cdiv class=\"skeleton-line w-3/4 h-6 mb-3 bg-gray-200 dark:bg-gray-700 rounded animate-pulse\">\u003C/div>\n      \u003Cdiv class=\"skeleton-line w-full h-4 mb-2 bg-gray-200 dark:bg-gray-700 rounded animate-pulse\">\u003C/div>\n      \u003Cdiv class=\"skeleton-line w-5/6 h-4 bg-gray-200 dark:bg-gray-700 rounded animate-pulse\">\u003C/div>\n    \u003C/div>\n    \n    \u003Cdiv v-else-if=\"repoData\" class=\"github-card p-4 bg-white dark:bg-gradient-to-br dark:from-gray-900 dark:via-gray-900 dark:to-gray-800 border border-gray-200 dark:border-gray-700 rounded-lg transition-all duration-200 hover:-translate-y-0.5 relative overflow-hidden\">\n      \u003C!-- 装饰性光晕效果 -->\n      \u003Cdiv class=\"absolute inset-0 bg-gradient-to-br from-blue-50/60 via-transparent to-transparent dark:from-sky-500/10 dark:via-transparent dark:to-transparent pointer-events-none\">\u003C/div>\n      \n      \u003C!-- 内容区域 -->\n      \u003Cdiv class=\"relative z-10\">\n        \u003C!-- 仓库名称和描述 -->\n        \u003Cdiv class=\"repo-header mb-4\">\n          \u003Ca :href=\"repoData.html_url\" target=\"_blank\" rel=\"noopener\" class=\"repo-name text-lg font-semibold text-blue-600 hover:text-blue-700 dark:text-sky-300 dark:hover:text-sky-200 transition-colors inline-flex items-center no-underline hover:underline\">\n            \u003CIcon name=\"mdi:github\" class=\"inline-block mr-2\" />\n            {{ repoData.full_name }}\n          \u003C/a>\n          \u003Cp v-if=\"repoData.description\" class=\"repo-description mt-2 text-sm text-gray-600 dark:text-gray-400 leading-relaxed\">\n            {{ repoData.description }}\n          \u003C/p>\n        \u003C/div>\n        \n        \u003C!-- 统计信息 -->\n        \u003Cdiv class=\"repo-stats flex gap-4 mb-4 pb-4 border-b border-gray-200 dark:border-gray-700\">\n          \u003Cdiv class=\"stat-item flex items-center gap-1 text-sm text-gray-600 dark:text-gray-400\">\n            \u003CIcon name=\"mdi:star-outline\" class=\"w-4 h-4\" />\n            \u003Cspan>{{ formatNumber(repoData.stargazers_count) }}\u003C/span>\n          \u003C/div>\n          \u003Cdiv class=\"stat-item flex items-center gap-1 text-sm text-gray-600 dark:text-gray-400\">\n            \u003CIcon name=\"mdi:source-fork\" class=\"w-4 h-4\" />\n            \u003Cspan>{{ formatNumber(repoData.forks_count) }}\u003C/span>\n          \u003C/div>\n          \u003Cdiv v-if=\"repoData.open_issues_count\" class=\"stat-item flex items-center gap-1 text-sm text-gray-600 dark:text-gray-400\">\n            \u003CIcon name=\"mdi:alert-circle-outline\" class=\"w-4 h-4\" />\n            \u003Cspan>{{ formatNumber(repoData.open_issues_count) }}\u003C/span>\n          \u003C/div>\n        \u003C/div>\n        \n        \u003C!-- 底部信息 -->\n        \u003Cdiv class=\"repo-footer flex items-center gap-4 flex-wrap text-xs text-gray-600 dark:text-gray-400\">\n          \u003Cdiv v-if=\"repoData.language\" class=\"language flex items-center gap-2\">\n            \u003Cspan class=\"language-dot w-3 h-3 rounded-full\" :style=\"{ backgroundColor: getLanguageColor(repoData.language) }\">\u003C/span>\n            {{ repoData.language }}\n          \u003C/div>\n          \u003Cdiv v-if=\"repoData.license\" class=\"license flex items-center\">\n            \u003CIcon name=\"mdi:scale-balance\" class=\"inline-block mr-1\" />\n            {{ repoData.license.spdx_id }}\n          \u003C/div>\n          \u003Cdiv class=\"updated\">\n            更新于 {{ formatDate(repoData.updated_at) }}\n          \u003C/div>\n        \u003C/div>\n      \u003C/div>\n    \u003C/div>\n    \n    \u003Cdiv v-else-if=\"error\" class=\"error-message p-4 bg-red-50 dark:bg-red-950/30 border border-red-200 dark:border-red-900/50 rounded-lg text-red-600 dark:text-red-400\">\n      \u003CIcon name=\"mdi:alert-circle\" class=\"inline-block mr-2\" />\n      {{ error }}\n    \u003C/div>\n  \u003C/div>\n\u003C/template>\n\n\u003Cscript setup>\n/**\n * GithubCard GitHub 仓库卡片组件 - MDC 语法\n * \n * 在 Markdown 中使用：\n * ::github-card{repo=\"vuejs/core\"}\n * ::\n * \n * ::github-card{repo=\"nuxt/nuxt\"}\n * ::\n */\n\nconst props = defineProps({\n  // GitHub 仓库，格式: owner/repo\n  repo: {\n    type: String,\n    required: true\n  }\n})\n\nconst repoData = ref(null)\nconst loading = ref(true)\nconst error = ref(null)\n\n// 语言颜色映射（GitHub 官方配色）\nconst languageColors = {\n  JavaScript: '#f1e05a',\n  TypeScript: '#3178c6',\n  Python: '#3572A5',\n  Java: '#b07219',\n  Go: '#00ADD8',\n  Rust: '#dea584',\n  Ruby: '#701516',\n  PHP: '#4F5D95',\n  'C++': '#f34b7d',\n  C: '#555555',\n  'C#': '#178600',\n  Swift: '#F05138',\n  Kotlin: '#A97BFF',\n  Dart: '#00B4AB',\n  Vue: '#41b883',\n  HTML: '#e34c26',\n  CSS: '#563d7c',\n  Shell: '#89e051',\n}\n\nconst getLanguageColor = (language) => {\n  return languageColors[language] || '#8b949e'\n}\n\nconst formatNumber = (num) => {\n  if (num >= 1000) {\n    return (num / 1000).toFixed(1) + 'k'\n  }\n  return num.toString()\n}\n\nconst formatDate = (dateString) => {\n  const date = new Date(dateString)\n  const now = new Date()\n  const diffTime = Math.abs(now - date)\n  const diffDays = Math.ceil(diffTime / (1000 * 60 * 60 * 24))\n  \n  if (diffDays === 0) return '今天'\n  if (diffDays === 1) return '昨天'\n  if (diffDays \u003C 30) return `${diffDays} 天前`\n  if (diffDays \u003C 365) return `${Math.floor(diffDays / 30)} 个月前`\n  return `${Math.floor(diffDays / 365)} 年前`\n}\n\n// 获取仓库数据\nconst fetchRepoData = async () => {\n  if (!props.repo) {\n    error.value = '请提供仓库名称'\n    loading.value = false\n    return\n  }\n  \n  try {\n    loading.value = true\n    error.value = null\n    \n    const response = await fetch(`https://api.github.com/repos/${props.repo}`)\n    \n    if (!response.ok) {\n      throw new Error(`GitHub API 错误: ${response.status}`)\n    }\n    \n    repoData.value = await response.json()\n  } catch (e) {\n    error.value = `加载失败: ${e.message}`\n    console.error('GitHub Card Error:', e)\n  } finally {\n    loading.value = false\n  }\n}\n\nonMounted(() => {\n  fetchRepoData()\n})\n\nwatch(() => props.repo, () => {\n  fetchRepoData()\n})\n\u003C/script>\n\n\u003Cstyle scoped>\n.github-card-mdc {\n  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif;\n}\n\n/* 保留装饰性光晕在暗色模式下的增强效果 */\n.dark .github-card:hover {\n  border-color: rgba(56, 189, 248, 0.3);\n}\n\n/* 暗色模式下仓库名称的文字发光效果 */\n.dark .repo-name {\n  text-shadow: 0 0 12px rgba(56, 189, 248, 0.25);\n}\n\n/* 暗色模式下语言点的外光晕 */\n.dark .language-dot {\n  border: 1px solid rgba(148, 163, 184, 0.3);\n}\n\u003C/style>\n\n\n",[7797],{"type":25,"tag":105,"props":7798,"children":7799},{"__ignoreMap":19},[7800,7815,7851,7908,7953,7997,8041,8056,8063,8121,8129,8173,8180,8188,8224,8232,8268,8371,8429,8437,8453,8510,8518,8533,8548,8556,8564,8600,8636,8693,8725,8740,8775,8831,8863,8878,8934,8990,9022,9037,9052,9059,9067,9103,9160,9225,9233,9248,9305,9362,9370,9385,9421,9429,9444,9459,9474,9489,9496,9552,9608,9616,9631,9646,9661,9668,9687,9694,9702,9709,9716,9724,9731,9738,9746,9753,9760,9767,9794,9802,9818,9837,9853,9860,9871,9878,9911,9943,9975,9982,9990,10010,10039,10068,10097,10126,10155,10184,10213,10242,10281,10310,10347,10376,10405,10434,10463,10492,10521,10550,10557,10564,10601,10641,10648,10655,10692,10725,10790,10797,10823,10830,10837,10874,10912,10940,10991,11071,11078,11125,11169,11227,11314,11374,11381,11388,11396,11430,11466,11499,11524,11532,11539,11546,11557,11580,11604,11611,11678,11685,11722,11781,11788,11795,11836,11863,11916,11960,11976,11999,12006,12013,12020,12044,12056,12067,12074,12121,12132,12143,12158,12165,12184,12200,12292,12300,12308,12317,12353,12413,12421,12429,12438,12463,12535,12543,12551,12560,12585,12654,12662],{"type":25,"tag":109,"props":7801,"children":7802},{"class":111,"line":112},[7803,7807,7811],{"type":25,"tag":109,"props":7804,"children":7805},{"style":293},[7806],{"type":30,"value":418},{"type":25,"tag":109,"props":7808,"children":7809},{"style":302},[7810],{"type":30,"value":173},{"type":25,"tag":109,"props":7812,"children":7813},{"style":293},[7814],{"type":30,"value":427},{"type":25,"tag":109,"props":7816,"children":7817},{"class":111,"line":122},[7818,7822,7826,7830,7834,7838,7843,7847],{"type":25,"tag":109,"props":7819,"children":7820},{"style":293},[7821],{"type":30,"value":435},{"type":25,"tag":109,"props":7823,"children":7824},{"style":302},[7825],{"type":30,"value":440},{"type":25,"tag":109,"props":7827,"children":7828},{"style":443},[7829],{"type":30,"value":446},{"type":25,"tag":109,"props":7831,"children":7832},{"style":293},[7833],{"type":30,"value":451},{"type":25,"tag":109,"props":7835,"children":7836},{"style":318},[7837],{"type":30,"value":456},{"type":25,"tag":109,"props":7839,"children":7840},{"style":225},[7841],{"type":30,"value":7842},"github-card-mdc my-6",{"type":25,"tag":109,"props":7844,"children":7845},{"style":318},[7846],{"type":30,"value":456},{"type":25,"tag":109,"props":7848,"children":7849},{"style":293},[7850],{"type":30,"value":427},{"type":25,"tag":109,"props":7852,"children":7853},{"class":111,"line":152},[7854,7858,7862,7866,7870,7874,7879,7883,7887,7891,7895,7900,7904],{"type":25,"tag":109,"props":7855,"children":7856},{"style":293},[7857],{"type":30,"value":477},{"type":25,"tag":109,"props":7859,"children":7860},{"style":302},[7861],{"type":30,"value":440},{"type":25,"tag":109,"props":7863,"children":7864},{"style":443},[7865],{"type":30,"value":524},{"type":25,"tag":109,"props":7867,"children":7868},{"style":293},[7869],{"type":30,"value":451},{"type":25,"tag":109,"props":7871,"children":7872},{"style":318},[7873],{"type":30,"value":456},{"type":25,"tag":109,"props":7875,"children":7876},{"style":225},[7877],{"type":30,"value":7878},"loading",{"type":25,"tag":109,"props":7880,"children":7881},{"style":318},[7882],{"type":30,"value":456},{"type":25,"tag":109,"props":7884,"children":7885},{"style":443},[7886],{"type":30,"value":446},{"type":25,"tag":109,"props":7888,"children":7889},{"style":293},[7890],{"type":30,"value":451},{"type":25,"tag":109,"props":7892,"children":7893},{"style":318},[7894],{"type":30,"value":456},{"type":25,"tag":109,"props":7896,"children":7897},{"style":225},[7898],{"type":30,"value":7899},"loading-skeleton p-4 bg-white dark:bg-gray-900 border border-gray-200 dark:border-gray-700 rounded-lg",{"type":25,"tag":109,"props":7901,"children":7902},{"style":318},[7903],{"type":30,"value":456},{"type":25,"tag":109,"props":7905,"children":7906},{"style":293},[7907],{"type":30,"value":427},{"type":25,"tag":109,"props":7909,"children":7910},{"class":111,"line":509},[7911,7915,7919,7923,7927,7931,7936,7940,7945,7949],{"type":25,"tag":109,"props":7912,"children":7913},{"style":293},[7914],{"type":30,"value":515},{"type":25,"tag":109,"props":7916,"children":7917},{"style":302},[7918],{"type":30,"value":440},{"type":25,"tag":109,"props":7920,"children":7921},{"style":443},[7922],{"type":30,"value":446},{"type":25,"tag":109,"props":7924,"children":7925},{"style":293},[7926],{"type":30,"value":451},{"type":25,"tag":109,"props":7928,"children":7929},{"style":318},[7930],{"type":30,"value":456},{"type":25,"tag":109,"props":7932,"children":7933},{"style":225},[7934],{"type":30,"value":7935},"skeleton-line w-3/4 h-6 mb-3 bg-gray-200 dark:bg-gray-700 rounded animate-pulse",{"type":25,"tag":109,"props":7937,"children":7938},{"style":318},[7939],{"type":30,"value":456},{"type":25,"tag":109,"props":7941,"children":7942},{"style":293},[7943],{"type":30,"value":7944},">\u003C/",{"type":25,"tag":109,"props":7946,"children":7947},{"style":302},[7948],{"type":30,"value":440},{"type":25,"tag":109,"props":7950,"children":7951},{"style":293},[7952],{"type":30,"value":427},{"type":25,"tag":109,"props":7954,"children":7955},{"class":111,"line":569},[7956,7960,7964,7968,7972,7976,7981,7985,7989,7993],{"type":25,"tag":109,"props":7957,"children":7958},{"style":293},[7959],{"type":30,"value":515},{"type":25,"tag":109,"props":7961,"children":7962},{"style":302},[7963],{"type":30,"value":440},{"type":25,"tag":109,"props":7965,"children":7966},{"style":443},[7967],{"type":30,"value":446},{"type":25,"tag":109,"props":7969,"children":7970},{"style":293},[7971],{"type":30,"value":451},{"type":25,"tag":109,"props":7973,"children":7974},{"style":318},[7975],{"type":30,"value":456},{"type":25,"tag":109,"props":7977,"children":7978},{"style":225},[7979],{"type":30,"value":7980},"skeleton-line w-full h-4 mb-2 bg-gray-200 dark:bg-gray-700 rounded animate-pulse",{"type":25,"tag":109,"props":7982,"children":7983},{"style":318},[7984],{"type":30,"value":456},{"type":25,"tag":109,"props":7986,"children":7987},{"style":293},[7988],{"type":30,"value":7944},{"type":25,"tag":109,"props":7990,"children":7991},{"style":302},[7992],{"type":30,"value":440},{"type":25,"tag":109,"props":7994,"children":7995},{"style":293},[7996],{"type":30,"value":427},{"type":25,"tag":109,"props":7998,"children":7999},{"class":111,"line":578},[8000,8004,8008,8012,8016,8020,8025,8029,8033,8037],{"type":25,"tag":109,"props":8001,"children":8002},{"style":293},[8003],{"type":30,"value":515},{"type":25,"tag":109,"props":8005,"children":8006},{"style":302},[8007],{"type":30,"value":440},{"type":25,"tag":109,"props":8009,"children":8010},{"style":443},[8011],{"type":30,"value":446},{"type":25,"tag":109,"props":8013,"children":8014},{"style":293},[8015],{"type":30,"value":451},{"type":25,"tag":109,"props":8017,"children":8018},{"style":318},[8019],{"type":30,"value":456},{"type":25,"tag":109,"props":8021,"children":8022},{"style":225},[8023],{"type":30,"value":8024},"skeleton-line w-5/6 h-4 bg-gray-200 dark:bg-gray-700 rounded animate-pulse",{"type":25,"tag":109,"props":8026,"children":8027},{"style":318},[8028],{"type":30,"value":456},{"type":25,"tag":109,"props":8030,"children":8031},{"style":293},[8032],{"type":30,"value":7944},{"type":25,"tag":109,"props":8034,"children":8035},{"style":302},[8036],{"type":30,"value":440},{"type":25,"tag":109,"props":8038,"children":8039},{"style":293},[8040],{"type":30,"value":427},{"type":25,"tag":109,"props":8042,"children":8043},{"class":111,"line":595},[8044,8048,8052],{"type":25,"tag":109,"props":8045,"children":8046},{"style":293},[8047],{"type":30,"value":842},{"type":25,"tag":109,"props":8049,"children":8050},{"style":302},[8051],{"type":30,"value":440},{"type":25,"tag":109,"props":8053,"children":8054},{"style":293},[8055],{"type":30,"value":427},{"type":25,"tag":109,"props":8057,"children":8058},{"class":111,"line":605},[8059],{"type":25,"tag":109,"props":8060,"children":8061},{"style":116},[8062],{"type":30,"value":4670},{"type":25,"tag":109,"props":8064,"children":8065},{"class":111,"line":618},[8066,8070,8074,8079,8083,8087,8092,8096,8100,8104,8108,8113,8117],{"type":25,"tag":109,"props":8067,"children":8068},{"style":293},[8069],{"type":30,"value":477},{"type":25,"tag":109,"props":8071,"children":8072},{"style":302},[8073],{"type":30,"value":440},{"type":25,"tag":109,"props":8075,"children":8076},{"style":443},[8077],{"type":30,"value":8078}," v-else-if",{"type":25,"tag":109,"props":8080,"children":8081},{"style":293},[8082],{"type":30,"value":451},{"type":25,"tag":109,"props":8084,"children":8085},{"style":318},[8086],{"type":30,"value":456},{"type":25,"tag":109,"props":8088,"children":8089},{"style":225},[8090],{"type":30,"value":8091},"repoData",{"type":25,"tag":109,"props":8093,"children":8094},{"style":318},[8095],{"type":30,"value":456},{"type":25,"tag":109,"props":8097,"children":8098},{"style":443},[8099],{"type":30,"value":446},{"type":25,"tag":109,"props":8101,"children":8102},{"style":293},[8103],{"type":30,"value":451},{"type":25,"tag":109,"props":8105,"children":8106},{"style":318},[8107],{"type":30,"value":456},{"type":25,"tag":109,"props":8109,"children":8110},{"style":225},[8111],{"type":30,"value":8112},"github-card p-4 bg-white dark:bg-gradient-to-br dark:from-gray-900 dark:via-gray-900 dark:to-gray-800 border border-gray-200 dark:border-gray-700 rounded-lg transition-all duration-200 hover:-translate-y-0.5 relative overflow-hidden",{"type":25,"tag":109,"props":8114,"children":8115},{"style":318},[8116],{"type":30,"value":456},{"type":25,"tag":109,"props":8118,"children":8119},{"style":293},[8120],{"type":30,"value":427},{"type":25,"tag":109,"props":8122,"children":8123},{"class":111,"line":645},[8124],{"type":25,"tag":109,"props":8125,"children":8126},{"style":1194},[8127],{"type":30,"value":8128},"      \u003C!-- 装饰性光晕效果 -->\n",{"type":25,"tag":109,"props":8130,"children":8131},{"class":111,"line":671},[8132,8136,8140,8144,8148,8152,8157,8161,8165,8169],{"type":25,"tag":109,"props":8133,"children":8134},{"style":293},[8135],{"type":30,"value":515},{"type":25,"tag":109,"props":8137,"children":8138},{"style":302},[8139],{"type":30,"value":440},{"type":25,"tag":109,"props":8141,"children":8142},{"style":443},[8143],{"type":30,"value":446},{"type":25,"tag":109,"props":8145,"children":8146},{"style":293},[8147],{"type":30,"value":451},{"type":25,"tag":109,"props":8149,"children":8150},{"style":318},[8151],{"type":30,"value":456},{"type":25,"tag":109,"props":8153,"children":8154},{"style":225},[8155],{"type":30,"value":8156},"absolute inset-0 bg-gradient-to-br from-blue-50/60 via-transparent to-transparent dark:from-sky-500/10 dark:via-transparent dark:to-transparent pointer-events-none",{"type":25,"tag":109,"props":8158,"children":8159},{"style":318},[8160],{"type":30,"value":456},{"type":25,"tag":109,"props":8162,"children":8163},{"style":293},[8164],{"type":30,"value":7944},{"type":25,"tag":109,"props":8166,"children":8167},{"style":302},[8168],{"type":30,"value":440},{"type":25,"tag":109,"props":8170,"children":8171},{"style":293},[8172],{"type":30,"value":427},{"type":25,"tag":109,"props":8174,"children":8175},{"class":111,"line":697},[8176],{"type":25,"tag":109,"props":8177,"children":8178},{"style":116},[8179],{"type":30,"value":4148},{"type":25,"tag":109,"props":8181,"children":8182},{"class":111,"line":723},[8183],{"type":25,"tag":109,"props":8184,"children":8185},{"style":1194},[8186],{"type":30,"value":8187},"      \u003C!-- 内容区域 -->\n",{"type":25,"tag":109,"props":8189,"children":8190},{"class":111,"line":749},[8191,8195,8199,8203,8207,8211,8216,8220],{"type":25,"tag":109,"props":8192,"children":8193},{"style":293},[8194],{"type":30,"value":515},{"type":25,"tag":109,"props":8196,"children":8197},{"style":302},[8198],{"type":30,"value":440},{"type":25,"tag":109,"props":8200,"children":8201},{"style":443},[8202],{"type":30,"value":446},{"type":25,"tag":109,"props":8204,"children":8205},{"style":293},[8206],{"type":30,"value":451},{"type":25,"tag":109,"props":8208,"children":8209},{"style":318},[8210],{"type":30,"value":456},{"type":25,"tag":109,"props":8212,"children":8213},{"style":225},[8214],{"type":30,"value":8215},"relative z-10",{"type":25,"tag":109,"props":8217,"children":8218},{"style":318},[8219],{"type":30,"value":456},{"type":25,"tag":109,"props":8221,"children":8222},{"style":293},[8223],{"type":30,"value":427},{"type":25,"tag":109,"props":8225,"children":8226},{"class":111,"line":775},[8227],{"type":25,"tag":109,"props":8228,"children":8229},{"style":1194},[8230],{"type":30,"value":8231},"        \u003C!-- 仓库名称和描述 -->\n",{"type":25,"tag":109,"props":8233,"children":8234},{"class":111,"line":801},[8235,8239,8243,8247,8251,8255,8260,8264],{"type":25,"tag":109,"props":8236,"children":8237},{"style":293},[8238],{"type":30,"value":4450},{"type":25,"tag":109,"props":8240,"children":8241},{"style":302},[8242],{"type":30,"value":440},{"type":25,"tag":109,"props":8244,"children":8245},{"style":443},[8246],{"type":30,"value":446},{"type":25,"tag":109,"props":8248,"children":8249},{"style":293},[8250],{"type":30,"value":451},{"type":25,"tag":109,"props":8252,"children":8253},{"style":318},[8254],{"type":30,"value":456},{"type":25,"tag":109,"props":8256,"children":8257},{"style":225},[8258],{"type":30,"value":8259},"repo-header mb-4",{"type":25,"tag":109,"props":8261,"children":8262},{"style":318},[8263],{"type":30,"value":456},{"type":25,"tag":109,"props":8265,"children":8266},{"style":293},[8267],{"type":30,"value":427},{"type":25,"tag":109,"props":8269,"children":8270},{"class":111,"line":827},[8271,8275,8280,8285,8289,8293,8298,8302,8307,8311,8315,8320,8324,8329,8333,8337,8342,8346,8350,8354,8358,8363,8367],{"type":25,"tag":109,"props":8272,"children":8273},{"style":293},[8274],{"type":30,"value":4487},{"type":25,"tag":109,"props":8276,"children":8277},{"style":302},[8278],{"type":30,"value":8279},"a",{"type":25,"tag":109,"props":8281,"children":8282},{"style":443},[8283],{"type":30,"value":8284}," :href",{"type":25,"tag":109,"props":8286,"children":8287},{"style":293},[8288],{"type":30,"value":451},{"type":25,"tag":109,"props":8290,"children":8291},{"style":318},[8292],{"type":30,"value":456},{"type":25,"tag":109,"props":8294,"children":8295},{"style":225},[8296],{"type":30,"value":8297},"repoData.html_url",{"type":25,"tag":109,"props":8299,"children":8300},{"style":318},[8301],{"type":30,"value":456},{"type":25,"tag":109,"props":8303,"children":8304},{"style":443},[8305],{"type":30,"value":8306}," target",{"type":25,"tag":109,"props":8308,"children":8309},{"style":293},[8310],{"type":30,"value":451},{"type":25,"tag":109,"props":8312,"children":8313},{"style":318},[8314],{"type":30,"value":456},{"type":25,"tag":109,"props":8316,"children":8317},{"style":225},[8318],{"type":30,"value":8319},"_blank",{"type":25,"tag":109,"props":8321,"children":8322},{"style":318},[8323],{"type":30,"value":456},{"type":25,"tag":109,"props":8325,"children":8326},{"style":443},[8327],{"type":30,"value":8328}," rel",{"type":25,"tag":109,"props":8330,"children":8331},{"style":293},[8332],{"type":30,"value":451},{"type":25,"tag":109,"props":8334,"children":8335},{"style":318},[8336],{"type":30,"value":456},{"type":25,"tag":109,"props":8338,"children":8339},{"style":225},[8340],{"type":30,"value":8341},"noopener",{"type":25,"tag":109,"props":8343,"children":8344},{"style":318},[8345],{"type":30,"value":456},{"type":25,"tag":109,"props":8347,"children":8348},{"style":443},[8349],{"type":30,"value":446},{"type":25,"tag":109,"props":8351,"children":8352},{"style":293},[8353],{"type":30,"value":451},{"type":25,"tag":109,"props":8355,"children":8356},{"style":318},[8357],{"type":30,"value":456},{"type":25,"tag":109,"props":8359,"children":8360},{"style":225},[8361],{"type":30,"value":8362},"repo-name text-lg font-semibold text-blue-600 hover:text-blue-700 dark:text-sky-300 dark:hover:text-sky-200 transition-colors inline-flex items-center no-underline hover:underline",{"type":25,"tag":109,"props":8364,"children":8365},{"style":318},[8366],{"type":30,"value":456},{"type":25,"tag":109,"props":8368,"children":8369},{"style":293},[8370],{"type":30,"value":427},{"type":25,"tag":109,"props":8372,"children":8373},{"class":111,"line":836},[8374,8379,8383,8387,8391,8395,8400,8404,8408,8412,8416,8421,8425],{"type":25,"tag":109,"props":8375,"children":8376},{"style":293},[8377],{"type":30,"value":8378},"            \u003C",{"type":25,"tag":109,"props":8380,"children":8381},{"style":302},[8382],{"type":30,"value":4492},{"type":25,"tag":109,"props":8384,"children":8385},{"style":443},[8386],{"type":30,"value":4497},{"type":25,"tag":109,"props":8388,"children":8389},{"style":293},[8390],{"type":30,"value":451},{"type":25,"tag":109,"props":8392,"children":8393},{"style":318},[8394],{"type":30,"value":456},{"type":25,"tag":109,"props":8396,"children":8397},{"style":225},[8398],{"type":30,"value":8399},"mdi:github",{"type":25,"tag":109,"props":8401,"children":8402},{"style":318},[8403],{"type":30,"value":456},{"type":25,"tag":109,"props":8405,"children":8406},{"style":443},[8407],{"type":30,"value":446},{"type":25,"tag":109,"props":8409,"children":8410},{"style":293},[8411],{"type":30,"value":451},{"type":25,"tag":109,"props":8413,"children":8414},{"style":318},[8415],{"type":30,"value":456},{"type":25,"tag":109,"props":8417,"children":8418},{"style":225},[8419],{"type":30,"value":8420},"inline-block mr-2",{"type":25,"tag":109,"props":8422,"children":8423},{"style":318},[8424],{"type":30,"value":456},{"type":25,"tag":109,"props":8426,"children":8427},{"style":293},[8428],{"type":30,"value":4562},{"type":25,"tag":109,"props":8430,"children":8431},{"class":111,"line":853},[8432],{"type":25,"tag":109,"props":8433,"children":8434},{"style":116},[8435],{"type":30,"value":8436},"            {{ repoData.full_name }}\n",{"type":25,"tag":109,"props":8438,"children":8439},{"class":111,"line":870},[8440,8445,8449],{"type":25,"tag":109,"props":8441,"children":8442},{"style":293},[8443],{"type":30,"value":8444},"          \u003C/",{"type":25,"tag":109,"props":8446,"children":8447},{"style":302},[8448],{"type":30,"value":8279},{"type":25,"tag":109,"props":8450,"children":8451},{"style":293},[8452],{"type":30,"value":427},{"type":25,"tag":109,"props":8454,"children":8455},{"class":111,"line":887},[8456,8460,8464,8468,8472,8476,8481,8485,8489,8493,8497,8502,8506],{"type":25,"tag":109,"props":8457,"children":8458},{"style":293},[8459],{"type":30,"value":4487},{"type":25,"tag":109,"props":8461,"children":8462},{"style":302},[8463],{"type":30,"value":26},{"type":25,"tag":109,"props":8465,"children":8466},{"style":443},[8467],{"type":30,"value":524},{"type":25,"tag":109,"props":8469,"children":8470},{"style":293},[8471],{"type":30,"value":451},{"type":25,"tag":109,"props":8473,"children":8474},{"style":318},[8475],{"type":30,"value":456},{"type":25,"tag":109,"props":8477,"children":8478},{"style":225},[8479],{"type":30,"value":8480},"repoData.description",{"type":25,"tag":109,"props":8482,"children":8483},{"style":318},[8484],{"type":30,"value":456},{"type":25,"tag":109,"props":8486,"children":8487},{"style":443},[8488],{"type":30,"value":446},{"type":25,"tag":109,"props":8490,"children":8491},{"style":293},[8492],{"type":30,"value":451},{"type":25,"tag":109,"props":8494,"children":8495},{"style":318},[8496],{"type":30,"value":456},{"type":25,"tag":109,"props":8498,"children":8499},{"style":225},[8500],{"type":30,"value":8501},"repo-description mt-2 text-sm text-gray-600 dark:text-gray-400 leading-relaxed",{"type":25,"tag":109,"props":8503,"children":8504},{"style":318},[8505],{"type":30,"value":456},{"type":25,"tag":109,"props":8507,"children":8508},{"style":293},[8509],{"type":30,"value":427},{"type":25,"tag":109,"props":8511,"children":8512},{"class":111,"line":895},[8513],{"type":25,"tag":109,"props":8514,"children":8515},{"style":116},[8516],{"type":30,"value":8517},"            {{ repoData.description }}\n",{"type":25,"tag":109,"props":8519,"children":8520},{"class":111,"line":917},[8521,8525,8529],{"type":25,"tag":109,"props":8522,"children":8523},{"style":293},[8524],{"type":30,"value":8444},{"type":25,"tag":109,"props":8526,"children":8527},{"style":302},[8528],{"type":30,"value":26},{"type":25,"tag":109,"props":8530,"children":8531},{"style":293},[8532],{"type":30,"value":427},{"type":25,"tag":109,"props":8534,"children":8535},{"class":111,"line":925},[8536,8540,8544],{"type":25,"tag":109,"props":8537,"children":8538},{"style":293},[8539],{"type":30,"value":4624},{"type":25,"tag":109,"props":8541,"children":8542},{"style":302},[8543],{"type":30,"value":440},{"type":25,"tag":109,"props":8545,"children":8546},{"style":293},[8547],{"type":30,"value":427},{"type":25,"tag":109,"props":8549,"children":8550},{"class":111,"line":960},[8551],{"type":25,"tag":109,"props":8552,"children":8553},{"style":116},[8554],{"type":30,"value":8555},"        \n",{"type":25,"tag":109,"props":8557,"children":8558},{"class":111,"line":978},[8559],{"type":25,"tag":109,"props":8560,"children":8561},{"style":1194},[8562],{"type":30,"value":8563},"        \u003C!-- 统计信息 -->\n",{"type":25,"tag":109,"props":8565,"children":8566},{"class":111,"line":1021},[8567,8571,8575,8579,8583,8587,8592,8596],{"type":25,"tag":109,"props":8568,"children":8569},{"style":293},[8570],{"type":30,"value":4450},{"type":25,"tag":109,"props":8572,"children":8573},{"style":302},[8574],{"type":30,"value":440},{"type":25,"tag":109,"props":8576,"children":8577},{"style":443},[8578],{"type":30,"value":446},{"type":25,"tag":109,"props":8580,"children":8581},{"style":293},[8582],{"type":30,"value":451},{"type":25,"tag":109,"props":8584,"children":8585},{"style":318},[8586],{"type":30,"value":456},{"type":25,"tag":109,"props":8588,"children":8589},{"style":225},[8590],{"type":30,"value":8591},"repo-stats flex gap-4 mb-4 pb-4 border-b border-gray-200 dark:border-gray-700",{"type":25,"tag":109,"props":8593,"children":8594},{"style":318},[8595],{"type":30,"value":456},{"type":25,"tag":109,"props":8597,"children":8598},{"style":293},[8599],{"type":30,"value":427},{"type":25,"tag":109,"props":8601,"children":8602},{"class":111,"line":1040},[8603,8607,8611,8615,8619,8623,8628,8632],{"type":25,"tag":109,"props":8604,"children":8605},{"style":293},[8606],{"type":30,"value":4487},{"type":25,"tag":109,"props":8608,"children":8609},{"style":302},[8610],{"type":30,"value":440},{"type":25,"tag":109,"props":8612,"children":8613},{"style":443},[8614],{"type":30,"value":446},{"type":25,"tag":109,"props":8616,"children":8617},{"style":293},[8618],{"type":30,"value":451},{"type":25,"tag":109,"props":8620,"children":8621},{"style":318},[8622],{"type":30,"value":456},{"type":25,"tag":109,"props":8624,"children":8625},{"style":225},[8626],{"type":30,"value":8627},"stat-item flex items-center gap-1 text-sm text-gray-600 dark:text-gray-400",{"type":25,"tag":109,"props":8629,"children":8630},{"style":318},[8631],{"type":30,"value":456},{"type":25,"tag":109,"props":8633,"children":8634},{"style":293},[8635],{"type":30,"value":427},{"type":25,"tag":109,"props":8637,"children":8638},{"class":111,"line":1049},[8639,8643,8647,8651,8655,8659,8664,8668,8672,8676,8680,8685,8689],{"type":25,"tag":109,"props":8640,"children":8641},{"style":293},[8642],{"type":30,"value":8378},{"type":25,"tag":109,"props":8644,"children":8645},{"style":302},[8646],{"type":30,"value":4492},{"type":25,"tag":109,"props":8648,"children":8649},{"style":443},[8650],{"type":30,"value":4497},{"type":25,"tag":109,"props":8652,"children":8653},{"style":293},[8654],{"type":30,"value":451},{"type":25,"tag":109,"props":8656,"children":8657},{"style":318},[8658],{"type":30,"value":456},{"type":25,"tag":109,"props":8660,"children":8661},{"style":225},[8662],{"type":30,"value":8663},"mdi:star-outline",{"type":25,"tag":109,"props":8665,"children":8666},{"style":318},[8667],{"type":30,"value":456},{"type":25,"tag":109,"props":8669,"children":8670},{"style":443},[8671],{"type":30,"value":446},{"type":25,"tag":109,"props":8673,"children":8674},{"style":293},[8675],{"type":30,"value":451},{"type":25,"tag":109,"props":8677,"children":8678},{"style":318},[8679],{"type":30,"value":456},{"type":25,"tag":109,"props":8681,"children":8682},{"style":225},[8683],{"type":30,"value":8684},"w-4 h-4",{"type":25,"tag":109,"props":8686,"children":8687},{"style":318},[8688],{"type":30,"value":456},{"type":25,"tag":109,"props":8690,"children":8691},{"style":293},[8692],{"type":30,"value":4562},{"type":25,"tag":109,"props":8694,"children":8695},{"class":111,"line":1066},[8696,8700,8704,8708,8713,8717,8721],{"type":25,"tag":109,"props":8697,"children":8698},{"style":293},[8699],{"type":30,"value":8378},{"type":25,"tag":109,"props":8701,"children":8702},{"style":302},[8703],{"type":30,"value":109},{"type":25,"tag":109,"props":8705,"children":8706},{"style":293},[8707],{"type":30,"value":4599},{"type":25,"tag":109,"props":8709,"children":8710},{"style":116},[8711],{"type":30,"value":8712},"{{ formatNumber(repoData.stargazers_count) }}",{"type":25,"tag":109,"props":8714,"children":8715},{"style":293},[8716],{"type":30,"value":876},{"type":25,"tag":109,"props":8718,"children":8719},{"style":302},[8720],{"type":30,"value":109},{"type":25,"tag":109,"props":8722,"children":8723},{"style":293},[8724],{"type":30,"value":427},{"type":25,"tag":109,"props":8726,"children":8727},{"class":111,"line":1102},[8728,8732,8736],{"type":25,"tag":109,"props":8729,"children":8730},{"style":293},[8731],{"type":30,"value":8444},{"type":25,"tag":109,"props":8733,"children":8734},{"style":302},[8735],{"type":30,"value":440},{"type":25,"tag":109,"props":8737,"children":8738},{"style":293},[8739],{"type":30,"value":427},{"type":25,"tag":109,"props":8741,"children":8742},{"class":111,"line":1119},[8743,8747,8751,8755,8759,8763,8767,8771],{"type":25,"tag":109,"props":8744,"children":8745},{"style":293},[8746],{"type":30,"value":4487},{"type":25,"tag":109,"props":8748,"children":8749},{"style":302},[8750],{"type":30,"value":440},{"type":25,"tag":109,"props":8752,"children":8753},{"style":443},[8754],{"type":30,"value":446},{"type":25,"tag":109,"props":8756,"children":8757},{"style":293},[8758],{"type":30,"value":451},{"type":25,"tag":109,"props":8760,"children":8761},{"style":318},[8762],{"type":30,"value":456},{"type":25,"tag":109,"props":8764,"children":8765},{"style":225},[8766],{"type":30,"value":8627},{"type":25,"tag":109,"props":8768,"children":8769},{"style":318},[8770],{"type":30,"value":456},{"type":25,"tag":109,"props":8772,"children":8773},{"style":293},[8774],{"type":30,"value":427},{"type":25,"tag":109,"props":8776,"children":8777},{"class":111,"line":1127},[8778,8782,8786,8790,8794,8798,8803,8807,8811,8815,8819,8823,8827],{"type":25,"tag":109,"props":8779,"children":8780},{"style":293},[8781],{"type":30,"value":8378},{"type":25,"tag":109,"props":8783,"children":8784},{"style":302},[8785],{"type":30,"value":4492},{"type":25,"tag":109,"props":8787,"children":8788},{"style":443},[8789],{"type":30,"value":4497},{"type":25,"tag":109,"props":8791,"children":8792},{"style":293},[8793],{"type":30,"value":451},{"type":25,"tag":109,"props":8795,"children":8796},{"style":318},[8797],{"type":30,"value":456},{"type":25,"tag":109,"props":8799,"children":8800},{"style":225},[8801],{"type":30,"value":8802},"mdi:source-fork",{"type":25,"tag":109,"props":8804,"children":8805},{"style":318},[8806],{"type":30,"value":456},{"type":25,"tag":109,"props":8808,"children":8809},{"style":443},[8810],{"type":30,"value":446},{"type":25,"tag":109,"props":8812,"children":8813},{"style":293},[8814],{"type":30,"value":451},{"type":25,"tag":109,"props":8816,"children":8817},{"style":318},[8818],{"type":30,"value":456},{"type":25,"tag":109,"props":8820,"children":8821},{"style":225},[8822],{"type":30,"value":8684},{"type":25,"tag":109,"props":8824,"children":8825},{"style":318},[8826],{"type":30,"value":456},{"type":25,"tag":109,"props":8828,"children":8829},{"style":293},[8830],{"type":30,"value":4562},{"type":25,"tag":109,"props":8832,"children":8833},{"class":111,"line":1144},[8834,8838,8842,8846,8851,8855,8859],{"type":25,"tag":109,"props":8835,"children":8836},{"style":293},[8837],{"type":30,"value":8378},{"type":25,"tag":109,"props":8839,"children":8840},{"style":302},[8841],{"type":30,"value":109},{"type":25,"tag":109,"props":8843,"children":8844},{"style":293},[8845],{"type":30,"value":4599},{"type":25,"tag":109,"props":8847,"children":8848},{"style":116},[8849],{"type":30,"value":8850},"{{ formatNumber(repoData.forks_count) }}",{"type":25,"tag":109,"props":8852,"children":8853},{"style":293},[8854],{"type":30,"value":876},{"type":25,"tag":109,"props":8856,"children":8857},{"style":302},[8858],{"type":30,"value":109},{"type":25,"tag":109,"props":8860,"children":8861},{"style":293},[8862],{"type":30,"value":427},{"type":25,"tag":109,"props":8864,"children":8865},{"class":111,"line":1164},[8866,8870,8874],{"type":25,"tag":109,"props":8867,"children":8868},{"style":293},[8869],{"type":30,"value":8444},{"type":25,"tag":109,"props":8871,"children":8872},{"style":302},[8873],{"type":30,"value":440},{"type":25,"tag":109,"props":8875,"children":8876},{"style":293},[8877],{"type":30,"value":427},{"type":25,"tag":109,"props":8879,"children":8880},{"class":111,"line":1200},[8881,8885,8889,8893,8897,8901,8906,8910,8914,8918,8922,8926,8930],{"type":25,"tag":109,"props":8882,"children":8883},{"style":293},[8884],{"type":30,"value":4487},{"type":25,"tag":109,"props":8886,"children":8887},{"style":302},[8888],{"type":30,"value":440},{"type":25,"tag":109,"props":8890,"children":8891},{"style":443},[8892],{"type":30,"value":524},{"type":25,"tag":109,"props":8894,"children":8895},{"style":293},[8896],{"type":30,"value":451},{"type":25,"tag":109,"props":8898,"children":8899},{"style":318},[8900],{"type":30,"value":456},{"type":25,"tag":109,"props":8902,"children":8903},{"style":225},[8904],{"type":30,"value":8905},"repoData.open_issues_count",{"type":25,"tag":109,"props":8907,"children":8908},{"style":318},[8909],{"type":30,"value":456},{"type":25,"tag":109,"props":8911,"children":8912},{"style":443},[8913],{"type":30,"value":446},{"type":25,"tag":109,"props":8915,"children":8916},{"style":293},[8917],{"type":30,"value":451},{"type":25,"tag":109,"props":8919,"children":8920},{"style":318},[8921],{"type":30,"value":456},{"type":25,"tag":109,"props":8923,"children":8924},{"style":225},[8925],{"type":30,"value":8627},{"type":25,"tag":109,"props":8927,"children":8928},{"style":318},[8929],{"type":30,"value":456},{"type":25,"tag":109,"props":8931,"children":8932},{"style":293},[8933],{"type":30,"value":427},{"type":25,"tag":109,"props":8935,"children":8936},{"class":111,"line":1310},[8937,8941,8945,8949,8953,8957,8962,8966,8970,8974,8978,8982,8986],{"type":25,"tag":109,"props":8938,"children":8939},{"style":293},[8940],{"type":30,"value":8378},{"type":25,"tag":109,"props":8942,"children":8943},{"style":302},[8944],{"type":30,"value":4492},{"type":25,"tag":109,"props":8946,"children":8947},{"style":443},[8948],{"type":30,"value":4497},{"type":25,"tag":109,"props":8950,"children":8951},{"style":293},[8952],{"type":30,"value":451},{"type":25,"tag":109,"props":8954,"children":8955},{"style":318},[8956],{"type":30,"value":456},{"type":25,"tag":109,"props":8958,"children":8959},{"style":225},[8960],{"type":30,"value":8961},"mdi:alert-circle-outline",{"type":25,"tag":109,"props":8963,"children":8964},{"style":318},[8965],{"type":30,"value":456},{"type":25,"tag":109,"props":8967,"children":8968},{"style":443},[8969],{"type":30,"value":446},{"type":25,"tag":109,"props":8971,"children":8972},{"style":293},[8973],{"type":30,"value":451},{"type":25,"tag":109,"props":8975,"children":8976},{"style":318},[8977],{"type":30,"value":456},{"type":25,"tag":109,"props":8979,"children":8980},{"style":225},[8981],{"type":30,"value":8684},{"type":25,"tag":109,"props":8983,"children":8984},{"style":318},[8985],{"type":30,"value":456},{"type":25,"tag":109,"props":8987,"children":8988},{"style":293},[8989],{"type":30,"value":4562},{"type":25,"tag":109,"props":8991,"children":8992},{"class":111,"line":1318},[8993,8997,9001,9005,9010,9014,9018],{"type":25,"tag":109,"props":8994,"children":8995},{"style":293},[8996],{"type":30,"value":8378},{"type":25,"tag":109,"props":8998,"children":8999},{"style":302},[9000],{"type":30,"value":109},{"type":25,"tag":109,"props":9002,"children":9003},{"style":293},[9004],{"type":30,"value":4599},{"type":25,"tag":109,"props":9006,"children":9007},{"style":116},[9008],{"type":30,"value":9009},"{{ formatNumber(repoData.open_issues_count) }}",{"type":25,"tag":109,"props":9011,"children":9012},{"style":293},[9013],{"type":30,"value":876},{"type":25,"tag":109,"props":9015,"children":9016},{"style":302},[9017],{"type":30,"value":109},{"type":25,"tag":109,"props":9019,"children":9020},{"style":293},[9021],{"type":30,"value":427},{"type":25,"tag":109,"props":9023,"children":9024},{"class":111,"line":1335},[9025,9029,9033],{"type":25,"tag":109,"props":9026,"children":9027},{"style":293},[9028],{"type":30,"value":8444},{"type":25,"tag":109,"props":9030,"children":9031},{"style":302},[9032],{"type":30,"value":440},{"type":25,"tag":109,"props":9034,"children":9035},{"style":293},[9036],{"type":30,"value":427},{"type":25,"tag":109,"props":9038,"children":9039},{"class":111,"line":1356},[9040,9044,9048],{"type":25,"tag":109,"props":9041,"children":9042},{"style":293},[9043],{"type":30,"value":4624},{"type":25,"tag":109,"props":9045,"children":9046},{"style":302},[9047],{"type":30,"value":440},{"type":25,"tag":109,"props":9049,"children":9050},{"style":293},[9051],{"type":30,"value":427},{"type":25,"tag":109,"props":9053,"children":9054},{"class":111,"line":1374},[9055],{"type":25,"tag":109,"props":9056,"children":9057},{"style":116},[9058],{"type":30,"value":8555},{"type":25,"tag":109,"props":9060,"children":9061},{"class":111,"line":1382},[9062],{"type":25,"tag":109,"props":9063,"children":9064},{"style":1194},[9065],{"type":30,"value":9066},"        \u003C!-- 底部信息 -->\n",{"type":25,"tag":109,"props":9068,"children":9069},{"class":111,"line":1399},[9070,9074,9078,9082,9086,9090,9095,9099],{"type":25,"tag":109,"props":9071,"children":9072},{"style":293},[9073],{"type":30,"value":4450},{"type":25,"tag":109,"props":9075,"children":9076},{"style":302},[9077],{"type":30,"value":440},{"type":25,"tag":109,"props":9079,"children":9080},{"style":443},[9081],{"type":30,"value":446},{"type":25,"tag":109,"props":9083,"children":9084},{"style":293},[9085],{"type":30,"value":451},{"type":25,"tag":109,"props":9087,"children":9088},{"style":318},[9089],{"type":30,"value":456},{"type":25,"tag":109,"props":9091,"children":9092},{"style":225},[9093],{"type":30,"value":9094},"repo-footer flex items-center gap-4 flex-wrap text-xs text-gray-600 dark:text-gray-400",{"type":25,"tag":109,"props":9096,"children":9097},{"style":318},[9098],{"type":30,"value":456},{"type":25,"tag":109,"props":9100,"children":9101},{"style":293},[9102],{"type":30,"value":427},{"type":25,"tag":109,"props":9104,"children":9105},{"class":111,"line":1419},[9106,9110,9114,9118,9122,9126,9131,9135,9139,9143,9147,9152,9156],{"type":25,"tag":109,"props":9107,"children":9108},{"style":293},[9109],{"type":30,"value":4487},{"type":25,"tag":109,"props":9111,"children":9112},{"style":302},[9113],{"type":30,"value":440},{"type":25,"tag":109,"props":9115,"children":9116},{"style":443},[9117],{"type":30,"value":524},{"type":25,"tag":109,"props":9119,"children":9120},{"style":293},[9121],{"type":30,"value":451},{"type":25,"tag":109,"props":9123,"children":9124},{"style":318},[9125],{"type":30,"value":456},{"type":25,"tag":109,"props":9127,"children":9128},{"style":225},[9129],{"type":30,"value":9130},"repoData.language",{"type":25,"tag":109,"props":9132,"children":9133},{"style":318},[9134],{"type":30,"value":456},{"type":25,"tag":109,"props":9136,"children":9137},{"style":443},[9138],{"type":30,"value":446},{"type":25,"tag":109,"props":9140,"children":9141},{"style":293},[9142],{"type":30,"value":451},{"type":25,"tag":109,"props":9144,"children":9145},{"style":318},[9146],{"type":30,"value":456},{"type":25,"tag":109,"props":9148,"children":9149},{"style":225},[9150],{"type":30,"value":9151},"language flex items-center gap-2",{"type":25,"tag":109,"props":9153,"children":9154},{"style":318},[9155],{"type":30,"value":456},{"type":25,"tag":109,"props":9157,"children":9158},{"style":293},[9159],{"type":30,"value":427},{"type":25,"tag":109,"props":9161,"children":9162},{"class":111,"line":1435},[9163,9167,9171,9175,9179,9183,9188,9192,9196,9200,9204,9209,9213,9217,9221],{"type":25,"tag":109,"props":9164,"children":9165},{"style":293},[9166],{"type":30,"value":8378},{"type":25,"tag":109,"props":9168,"children":9169},{"style":302},[9170],{"type":30,"value":109},{"type":25,"tag":109,"props":9172,"children":9173},{"style":443},[9174],{"type":30,"value":446},{"type":25,"tag":109,"props":9176,"children":9177},{"style":293},[9178],{"type":30,"value":451},{"type":25,"tag":109,"props":9180,"children":9181},{"style":318},[9182],{"type":30,"value":456},{"type":25,"tag":109,"props":9184,"children":9185},{"style":225},[9186],{"type":30,"value":9187},"language-dot w-3 h-3 rounded-full",{"type":25,"tag":109,"props":9189,"children":9190},{"style":318},[9191],{"type":30,"value":456},{"type":25,"tag":109,"props":9193,"children":9194},{"style":443},[9195],{"type":30,"value":4035},{"type":25,"tag":109,"props":9197,"children":9198},{"style":293},[9199],{"type":30,"value":451},{"type":25,"tag":109,"props":9201,"children":9202},{"style":318},[9203],{"type":30,"value":456},{"type":25,"tag":109,"props":9205,"children":9206},{"style":225},[9207],{"type":30,"value":9208},"{ backgroundColor: getLanguageColor(repoData.language) }",{"type":25,"tag":109,"props":9210,"children":9211},{"style":318},[9212],{"type":30,"value":456},{"type":25,"tag":109,"props":9214,"children":9215},{"style":293},[9216],{"type":30,"value":7944},{"type":25,"tag":109,"props":9218,"children":9219},{"style":302},[9220],{"type":30,"value":109},{"type":25,"tag":109,"props":9222,"children":9223},{"style":293},[9224],{"type":30,"value":427},{"type":25,"tag":109,"props":9226,"children":9227},{"class":111,"line":1443},[9228],{"type":25,"tag":109,"props":9229,"children":9230},{"style":116},[9231],{"type":30,"value":9232},"            {{ repoData.language }}\n",{"type":25,"tag":109,"props":9234,"children":9235},{"class":111,"line":1460},[9236,9240,9244],{"type":25,"tag":109,"props":9237,"children":9238},{"style":293},[9239],{"type":30,"value":8444},{"type":25,"tag":109,"props":9241,"children":9242},{"style":302},[9243],{"type":30,"value":440},{"type":25,"tag":109,"props":9245,"children":9246},{"style":293},[9247],{"type":30,"value":427},{"type":25,"tag":109,"props":9249,"children":9250},{"class":111,"line":1480},[9251,9255,9259,9263,9267,9271,9276,9280,9284,9288,9292,9297,9301],{"type":25,"tag":109,"props":9252,"children":9253},{"style":293},[9254],{"type":30,"value":4487},{"type":25,"tag":109,"props":9256,"children":9257},{"style":302},[9258],{"type":30,"value":440},{"type":25,"tag":109,"props":9260,"children":9261},{"style":443},[9262],{"type":30,"value":524},{"type":25,"tag":109,"props":9264,"children":9265},{"style":293},[9266],{"type":30,"value":451},{"type":25,"tag":109,"props":9268,"children":9269},{"style":318},[9270],{"type":30,"value":456},{"type":25,"tag":109,"props":9272,"children":9273},{"style":225},[9274],{"type":30,"value":9275},"repoData.license",{"type":25,"tag":109,"props":9277,"children":9278},{"style":318},[9279],{"type":30,"value":456},{"type":25,"tag":109,"props":9281,"children":9282},{"style":443},[9283],{"type":30,"value":446},{"type":25,"tag":109,"props":9285,"children":9286},{"style":293},[9287],{"type":30,"value":451},{"type":25,"tag":109,"props":9289,"children":9290},{"style":318},[9291],{"type":30,"value":456},{"type":25,"tag":109,"props":9293,"children":9294},{"style":225},[9295],{"type":30,"value":9296},"license flex items-center",{"type":25,"tag":109,"props":9298,"children":9299},{"style":318},[9300],{"type":30,"value":456},{"type":25,"tag":109,"props":9302,"children":9303},{"style":293},[9304],{"type":30,"value":427},{"type":25,"tag":109,"props":9306,"children":9307},{"class":111,"line":1497},[9308,9312,9316,9320,9324,9328,9333,9337,9341,9345,9349,9354,9358],{"type":25,"tag":109,"props":9309,"children":9310},{"style":293},[9311],{"type":30,"value":8378},{"type":25,"tag":109,"props":9313,"children":9314},{"style":302},[9315],{"type":30,"value":4492},{"type":25,"tag":109,"props":9317,"children":9318},{"style":443},[9319],{"type":30,"value":4497},{"type":25,"tag":109,"props":9321,"children":9322},{"style":293},[9323],{"type":30,"value":451},{"type":25,"tag":109,"props":9325,"children":9326},{"style":318},[9327],{"type":30,"value":456},{"type":25,"tag":109,"props":9329,"children":9330},{"style":225},[9331],{"type":30,"value":9332},"mdi:scale-balance",{"type":25,"tag":109,"props":9334,"children":9335},{"style":318},[9336],{"type":30,"value":456},{"type":25,"tag":109,"props":9338,"children":9339},{"style":443},[9340],{"type":30,"value":446},{"type":25,"tag":109,"props":9342,"children":9343},{"style":293},[9344],{"type":30,"value":451},{"type":25,"tag":109,"props":9346,"children":9347},{"style":318},[9348],{"type":30,"value":456},{"type":25,"tag":109,"props":9350,"children":9351},{"style":225},[9352],{"type":30,"value":9353},"inline-block mr-1",{"type":25,"tag":109,"props":9355,"children":9356},{"style":318},[9357],{"type":30,"value":456},{"type":25,"tag":109,"props":9359,"children":9360},{"style":293},[9361],{"type":30,"value":4562},{"type":25,"tag":109,"props":9363,"children":9364},{"class":111,"line":1506},[9365],{"type":25,"tag":109,"props":9366,"children":9367},{"style":116},[9368],{"type":30,"value":9369},"            {{ repoData.license.spdx_id }}\n",{"type":25,"tag":109,"props":9371,"children":9372},{"class":111,"line":1518},[9373,9377,9381],{"type":25,"tag":109,"props":9374,"children":9375},{"style":293},[9376],{"type":30,"value":8444},{"type":25,"tag":109,"props":9378,"children":9379},{"style":302},[9380],{"type":30,"value":440},{"type":25,"tag":109,"props":9382,"children":9383},{"style":293},[9384],{"type":30,"value":427},{"type":25,"tag":109,"props":9386,"children":9387},{"class":111,"line":1526},[9388,9392,9396,9400,9404,9408,9413,9417],{"type":25,"tag":109,"props":9389,"children":9390},{"style":293},[9391],{"type":30,"value":4487},{"type":25,"tag":109,"props":9393,"children":9394},{"style":302},[9395],{"type":30,"value":440},{"type":25,"tag":109,"props":9397,"children":9398},{"style":443},[9399],{"type":30,"value":446},{"type":25,"tag":109,"props":9401,"children":9402},{"style":293},[9403],{"type":30,"value":451},{"type":25,"tag":109,"props":9405,"children":9406},{"style":318},[9407],{"type":30,"value":456},{"type":25,"tag":109,"props":9409,"children":9410},{"style":225},[9411],{"type":30,"value":9412},"updated",{"type":25,"tag":109,"props":9414,"children":9415},{"style":318},[9416],{"type":30,"value":456},{"type":25,"tag":109,"props":9418,"children":9419},{"style":293},[9420],{"type":30,"value":427},{"type":25,"tag":109,"props":9422,"children":9423},{"class":111,"line":1571},[9424],{"type":25,"tag":109,"props":9425,"children":9426},{"style":116},[9427],{"type":30,"value":9428},"            更新于 {{ formatDate(repoData.updated_at) }}\n",{"type":25,"tag":109,"props":9430,"children":9431},{"class":111,"line":1579},[9432,9436,9440],{"type":25,"tag":109,"props":9433,"children":9434},{"style":293},[9435],{"type":30,"value":8444},{"type":25,"tag":109,"props":9437,"children":9438},{"style":302},[9439],{"type":30,"value":440},{"type":25,"tag":109,"props":9441,"children":9442},{"style":293},[9443],{"type":30,"value":427},{"type":25,"tag":109,"props":9445,"children":9446},{"class":111,"line":1627},[9447,9451,9455],{"type":25,"tag":109,"props":9448,"children":9449},{"style":293},[9450],{"type":30,"value":4624},{"type":25,"tag":109,"props":9452,"children":9453},{"style":302},[9454],{"type":30,"value":440},{"type":25,"tag":109,"props":9456,"children":9457},{"style":293},[9458],{"type":30,"value":427},{"type":25,"tag":109,"props":9460,"children":9461},{"class":111,"line":1663},[9462,9466,9470],{"type":25,"tag":109,"props":9463,"children":9464},{"style":293},[9465],{"type":30,"value":584},{"type":25,"tag":109,"props":9467,"children":9468},{"style":302},[9469],{"type":30,"value":440},{"type":25,"tag":109,"props":9471,"children":9472},{"style":293},[9473],{"type":30,"value":427},{"type":25,"tag":109,"props":9475,"children":9476},{"class":111,"line":1697},[9477,9481,9485],{"type":25,"tag":109,"props":9478,"children":9479},{"style":293},[9480],{"type":30,"value":842},{"type":25,"tag":109,"props":9482,"children":9483},{"style":302},[9484],{"type":30,"value":440},{"type":25,"tag":109,"props":9486,"children":9487},{"style":293},[9488],{"type":30,"value":427},{"type":25,"tag":109,"props":9490,"children":9491},{"class":111,"line":1705},[9492],{"type":25,"tag":109,"props":9493,"children":9494},{"style":116},[9495],{"type":30,"value":4670},{"type":25,"tag":109,"props":9497,"children":9498},{"class":111,"line":1754},[9499,9503,9507,9511,9515,9519,9523,9527,9531,9535,9539,9544,9548],{"type":25,"tag":109,"props":9500,"children":9501},{"style":293},[9502],{"type":30,"value":477},{"type":25,"tag":109,"props":9504,"children":9505},{"style":302},[9506],{"type":30,"value":440},{"type":25,"tag":109,"props":9508,"children":9509},{"style":443},[9510],{"type":30,"value":8078},{"type":25,"tag":109,"props":9512,"children":9513},{"style":293},[9514],{"type":30,"value":451},{"type":25,"tag":109,"props":9516,"children":9517},{"style":318},[9518],{"type":30,"value":456},{"type":25,"tag":109,"props":9520,"children":9521},{"style":225},[9522],{"type":30,"value":7499},{"type":25,"tag":109,"props":9524,"children":9525},{"style":318},[9526],{"type":30,"value":456},{"type":25,"tag":109,"props":9528,"children":9529},{"style":443},[9530],{"type":30,"value":446},{"type":25,"tag":109,"props":9532,"children":9533},{"style":293},[9534],{"type":30,"value":451},{"type":25,"tag":109,"props":9536,"children":9537},{"style":318},[9538],{"type":30,"value":456},{"type":25,"tag":109,"props":9540,"children":9541},{"style":225},[9542],{"type":30,"value":9543},"error-message p-4 bg-red-50 dark:bg-red-950/30 border border-red-200 dark:border-red-900/50 rounded-lg text-red-600 dark:text-red-400",{"type":25,"tag":109,"props":9545,"children":9546},{"style":318},[9547],{"type":30,"value":456},{"type":25,"tag":109,"props":9549,"children":9550},{"style":293},[9551],{"type":30,"value":427},{"type":25,"tag":109,"props":9553,"children":9554},{"class":111,"line":1818},[9555,9559,9563,9567,9571,9575,9580,9584,9588,9592,9596,9600,9604],{"type":25,"tag":109,"props":9556,"children":9557},{"style":293},[9558],{"type":30,"value":515},{"type":25,"tag":109,"props":9560,"children":9561},{"style":302},[9562],{"type":30,"value":4492},{"type":25,"tag":109,"props":9564,"children":9565},{"style":443},[9566],{"type":30,"value":4497},{"type":25,"tag":109,"props":9568,"children":9569},{"style":293},[9570],{"type":30,"value":451},{"type":25,"tag":109,"props":9572,"children":9573},{"style":318},[9574],{"type":30,"value":456},{"type":25,"tag":109,"props":9576,"children":9577},{"style":225},[9578],{"type":30,"value":9579},"mdi:alert-circle",{"type":25,"tag":109,"props":9581,"children":9582},{"style":318},[9583],{"type":30,"value":456},{"type":25,"tag":109,"props":9585,"children":9586},{"style":443},[9587],{"type":30,"value":446},{"type":25,"tag":109,"props":9589,"children":9590},{"style":293},[9591],{"type":30,"value":451},{"type":25,"tag":109,"props":9593,"children":9594},{"style":318},[9595],{"type":30,"value":456},{"type":25,"tag":109,"props":9597,"children":9598},{"style":225},[9599],{"type":30,"value":8420},{"type":25,"tag":109,"props":9601,"children":9602},{"style":318},[9603],{"type":30,"value":456},{"type":25,"tag":109,"props":9605,"children":9606},{"style":293},[9607],{"type":30,"value":4562},{"type":25,"tag":109,"props":9609,"children":9610},{"class":111,"line":1896},[9611],{"type":25,"tag":109,"props":9612,"children":9613},{"style":116},[9614],{"type":30,"value":9615},"      {{ error }}\n",{"type":25,"tag":109,"props":9617,"children":9618},{"class":111,"line":1951},[9619,9623,9627],{"type":25,"tag":109,"props":9620,"children":9621},{"style":293},[9622],{"type":30,"value":842},{"type":25,"tag":109,"props":9624,"children":9625},{"style":302},[9626],{"type":30,"value":440},{"type":25,"tag":109,"props":9628,"children":9629},{"style":293},[9630],{"type":30,"value":427},{"type":25,"tag":109,"props":9632,"children":9633},{"class":111,"line":1960},[9634,9638,9642],{"type":25,"tag":109,"props":9635,"children":9636},{"style":293},[9637],{"type":30,"value":859},{"type":25,"tag":109,"props":9639,"children":9640},{"style":302},[9641],{"type":30,"value":440},{"type":25,"tag":109,"props":9643,"children":9644},{"style":293},[9645],{"type":30,"value":427},{"type":25,"tag":109,"props":9647,"children":9648},{"class":111,"line":1968},[9649,9653,9657],{"type":25,"tag":109,"props":9650,"children":9651},{"style":293},[9652],{"type":30,"value":876},{"type":25,"tag":109,"props":9654,"children":9655},{"style":302},[9656],{"type":30,"value":173},{"type":25,"tag":109,"props":9658,"children":9659},{"style":293},[9660],{"type":30,"value":427},{"type":25,"tag":109,"props":9662,"children":9663},{"class":111,"line":2036},[9664],{"type":25,"tag":109,"props":9665,"children":9666},{"emptyLinePlaceholder":599},[9667],{"type":30,"value":602},{"type":25,"tag":109,"props":9669,"children":9670},{"class":111,"line":2044},[9671,9675,9679,9683],{"type":25,"tag":109,"props":9672,"children":9673},{"style":293},[9674],{"type":30,"value":418},{"type":25,"tag":109,"props":9676,"children":9677},{"style":302},[9678],{"type":30,"value":905},{"type":25,"tag":109,"props":9680,"children":9681},{"style":443},[9682],{"type":30,"value":910},{"type":25,"tag":109,"props":9684,"children":9685},{"style":293},[9686],{"type":30,"value":427},{"type":25,"tag":109,"props":9688,"children":9689},{"class":111,"line":2058},[9690],{"type":25,"tag":109,"props":9691,"children":9692},{"style":1194},[9693],{"type":30,"value":4814},{"type":25,"tag":109,"props":9695,"children":9696},{"class":111,"line":2111},[9697],{"type":25,"tag":109,"props":9698,"children":9699},{"style":1194},[9700],{"type":30,"value":9701}," * GithubCard GitHub 仓库卡片组件 - MDC 语法\n",{"type":25,"tag":109,"props":9703,"children":9704},{"class":111,"line":2145},[9705],{"type":25,"tag":109,"props":9706,"children":9707},{"style":1194},[9708],{"type":30,"value":4830},{"type":25,"tag":109,"props":9710,"children":9711},{"class":111,"line":2190},[9712],{"type":25,"tag":109,"props":9713,"children":9714},{"style":1194},[9715],{"type":30,"value":4853},{"type":25,"tag":109,"props":9717,"children":9718},{"class":111,"line":2198},[9719],{"type":25,"tag":109,"props":9720,"children":9721},{"style":1194},[9722],{"type":30,"value":9723}," * ::github-card{repo=\"vuejs/core\"}\n",{"type":25,"tag":109,"props":9725,"children":9726},{"class":111,"line":2206},[9727],{"type":25,"tag":109,"props":9728,"children":9729},{"style":1194},[9730],{"type":30,"value":4869},{"type":25,"tag":109,"props":9732,"children":9733},{"class":111,"line":2214},[9734],{"type":25,"tag":109,"props":9735,"children":9736},{"style":1194},[9737],{"type":30,"value":4830},{"type":25,"tag":109,"props":9739,"children":9740},{"class":111,"line":2290},[9741],{"type":25,"tag":109,"props":9742,"children":9743},{"style":1194},[9744],{"type":30,"value":9745}," * ::github-card{repo=\"nuxt/nuxt\"}\n",{"type":25,"tag":109,"props":9747,"children":9748},{"class":111,"line":2298},[9749],{"type":25,"tag":109,"props":9750,"children":9751},{"style":1194},[9752],{"type":30,"value":4869},{"type":25,"tag":109,"props":9754,"children":9755},{"class":111,"line":2335},[9756],{"type":25,"tag":109,"props":9757,"children":9758},{"style":1194},[9759],{"type":30,"value":4921},{"type":25,"tag":109,"props":9761,"children":9762},{"class":111,"line":2384},[9763],{"type":25,"tag":109,"props":9764,"children":9765},{"emptyLinePlaceholder":599},[9766],{"type":30,"value":602},{"type":25,"tag":109,"props":9768,"children":9769},{"class":111,"line":2410},[9770,9774,9778,9782,9786,9790],{"type":25,"tag":109,"props":9771,"children":9772},{"style":929},[9773],{"type":30,"value":932},{"type":25,"tag":109,"props":9775,"children":9776},{"style":935},[9777],{"type":30,"value":938},{"type":25,"tag":109,"props":9779,"children":9780},{"style":941},[9781],{"type":30,"value":944},{"type":25,"tag":109,"props":9783,"children":9784},{"style":282},[9785],{"type":30,"value":949},{"type":25,"tag":109,"props":9787,"children":9788},{"style":116},[9789],{"type":30,"value":290},{"type":25,"tag":109,"props":9791,"children":9792},{"style":293},[9793],{"type":30,"value":296},{"type":25,"tag":109,"props":9795,"children":9796},{"class":111,"line":2418},[9797],{"type":25,"tag":109,"props":9798,"children":9799},{"style":1194},[9800],{"type":30,"value":9801},"  // GitHub 仓库，格式: owner/repo\n",{"type":25,"tag":109,"props":9803,"children":9804},{"class":111,"line":2455},[9805,9810,9814],{"type":25,"tag":109,"props":9806,"children":9807},{"style":302},[9808],{"type":30,"value":9809},"  repo",{"type":25,"tag":109,"props":9811,"children":9812},{"style":293},[9813],{"type":30,"value":310},{"type":25,"tag":109,"props":9815,"children":9816},{"style":293},[9817],{"type":30,"value":975},{"type":25,"tag":109,"props":9819,"children":9820},{"class":111,"line":2492},[9821,9825,9829,9833],{"type":25,"tag":109,"props":9822,"children":9823},{"style":302},[9824],{"type":30,"value":984},{"type":25,"tag":109,"props":9826,"children":9827},{"style":293},[9828],{"type":30,"value":310},{"type":25,"tag":109,"props":9830,"children":9831},{"style":995},[9832],{"type":30,"value":1008},{"type":25,"tag":109,"props":9834,"children":9835},{"style":293},[9836],{"type":30,"value":1018},{"type":25,"tag":109,"props":9838,"children":9839},{"class":111,"line":2500},[9840,9845,9849],{"type":25,"tag":109,"props":9841,"children":9842},{"style":302},[9843],{"type":30,"value":9844},"    required",{"type":25,"tag":109,"props":9846,"children":9847},{"style":293},[9848],{"type":30,"value":310},{"type":25,"tag":109,"props":9850,"children":9851},{"style":1368},[9852],{"type":30,"value":1371},{"type":25,"tag":109,"props":9854,"children":9855},{"class":111,"line":2508},[9856],{"type":25,"tag":109,"props":9857,"children":9858},{"style":293},[9859],{"type":30,"value":1503},{"type":25,"tag":109,"props":9861,"children":9862},{"class":111,"line":2516},[9863,9867],{"type":25,"tag":109,"props":9864,"children":9865},{"style":293},[9866],{"type":30,"value":343},{"type":25,"tag":109,"props":9868,"children":9869},{"style":116},[9870],{"type":30,"value":348},{"type":25,"tag":109,"props":9872,"children":9873},{"class":111,"line":2525},[9874],{"type":25,"tag":109,"props":9875,"children":9876},{"emptyLinePlaceholder":599},[9877],{"type":30,"value":602},{"type":25,"tag":109,"props":9879,"children":9880},{"class":111,"line":2562},[9881,9885,9890,9894,9898,9902,9907],{"type":25,"tag":109,"props":9882,"children":9883},{"style":929},[9884],{"type":30,"value":932},{"type":25,"tag":109,"props":9886,"children":9887},{"style":935},[9888],{"type":30,"value":9889}," repoData",{"type":25,"tag":109,"props":9891,"children":9892},{"style":941},[9893],{"type":30,"value":944},{"type":25,"tag":109,"props":9895,"children":9896},{"style":282},[9897],{"type":30,"value":1987},{"type":25,"tag":109,"props":9899,"children":9900},{"style":116},[9901],{"type":30,"value":290},{"type":25,"tag":109,"props":9903,"children":9904},{"style":2759},[9905],{"type":30,"value":9906},"null",{"type":25,"tag":109,"props":9908,"children":9909},{"style":116},[9910],{"type":30,"value":348},{"type":25,"tag":109,"props":9912,"children":9913},{"class":111,"line":2583},[9914,9918,9923,9927,9931,9935,9939],{"type":25,"tag":109,"props":9915,"children":9916},{"style":929},[9917],{"type":30,"value":932},{"type":25,"tag":109,"props":9919,"children":9920},{"style":935},[9921],{"type":30,"value":9922}," loading",{"type":25,"tag":109,"props":9924,"children":9925},{"style":941},[9926],{"type":30,"value":944},{"type":25,"tag":109,"props":9928,"children":9929},{"style":282},[9930],{"type":30,"value":1987},{"type":25,"tag":109,"props":9932,"children":9933},{"style":116},[9934],{"type":30,"value":290},{"type":25,"tag":109,"props":9936,"children":9937},{"style":1368},[9938],{"type":30,"value":742},{"type":25,"tag":109,"props":9940,"children":9941},{"style":116},[9942],{"type":30,"value":348},{"type":25,"tag":109,"props":9944,"children":9945},{"class":111,"line":2605},[9946,9950,9955,9959,9963,9967,9971],{"type":25,"tag":109,"props":9947,"children":9948},{"style":929},[9949],{"type":30,"value":932},{"type":25,"tag":109,"props":9951,"children":9952},{"style":935},[9953],{"type":30,"value":9954}," error",{"type":25,"tag":109,"props":9956,"children":9957},{"style":941},[9958],{"type":30,"value":944},{"type":25,"tag":109,"props":9960,"children":9961},{"style":282},[9962],{"type":30,"value":1987},{"type":25,"tag":109,"props":9964,"children":9965},{"style":116},[9966],{"type":30,"value":290},{"type":25,"tag":109,"props":9968,"children":9969},{"style":2759},[9970],{"type":30,"value":9906},{"type":25,"tag":109,"props":9972,"children":9973},{"style":116},[9974],{"type":30,"value":348},{"type":25,"tag":109,"props":9976,"children":9977},{"class":111,"line":2627},[9978],{"type":25,"tag":109,"props":9979,"children":9980},{"emptyLinePlaceholder":599},[9981],{"type":30,"value":602},{"type":25,"tag":109,"props":9983,"children":9984},{"class":111,"line":2645},[9985],{"type":25,"tag":109,"props":9986,"children":9987},{"style":1194},[9988],{"type":30,"value":9989},"// 语言颜色映射（GitHub 官方配色）\n",{"type":25,"tag":109,"props":9991,"children":9992},{"class":111,"line":2653},[9993,9997,10002,10006],{"type":25,"tag":109,"props":9994,"children":9995},{"style":929},[9996],{"type":30,"value":932},{"type":25,"tag":109,"props":9998,"children":9999},{"style":935},[10000],{"type":30,"value":10001}," languageColors",{"type":25,"tag":109,"props":10003,"children":10004},{"style":941},[10005],{"type":30,"value":944},{"type":25,"tag":109,"props":10007,"children":10008},{"style":293},[10009],{"type":30,"value":975},{"type":25,"tag":109,"props":10011,"children":10012},{"class":111,"line":2698},[10013,10018,10022,10026,10031,10035],{"type":25,"tag":109,"props":10014,"children":10015},{"style":302},[10016],{"type":30,"value":10017},"  JavaScript",{"type":25,"tag":109,"props":10019,"children":10020},{"style":293},[10021],{"type":30,"value":310},{"type":25,"tag":109,"props":10023,"children":10024},{"style":318},[10025],{"type":30,"value":1178},{"type":25,"tag":109,"props":10027,"children":10028},{"style":225},[10029],{"type":30,"value":10030},"#f1e05a",{"type":25,"tag":109,"props":10032,"children":10033},{"style":318},[10034],{"type":30,"value":321},{"type":25,"tag":109,"props":10036,"children":10037},{"style":293},[10038],{"type":30,"value":1018},{"type":25,"tag":109,"props":10040,"children":10041},{"class":111,"line":2710},[10042,10047,10051,10055,10060,10064],{"type":25,"tag":109,"props":10043,"children":10044},{"style":302},[10045],{"type":30,"value":10046},"  TypeScript",{"type":25,"tag":109,"props":10048,"children":10049},{"style":293},[10050],{"type":30,"value":310},{"type":25,"tag":109,"props":10052,"children":10053},{"style":318},[10054],{"type":30,"value":1178},{"type":25,"tag":109,"props":10056,"children":10057},{"style":225},[10058],{"type":30,"value":10059},"#3178c6",{"type":25,"tag":109,"props":10061,"children":10062},{"style":318},[10063],{"type":30,"value":321},{"type":25,"tag":109,"props":10065,"children":10066},{"style":293},[10067],{"type":30,"value":1018},{"type":25,"tag":109,"props":10069,"children":10070},{"class":111,"line":2726},[10071,10076,10080,10084,10089,10093],{"type":25,"tag":109,"props":10072,"children":10073},{"style":302},[10074],{"type":30,"value":10075},"  Python",{"type":25,"tag":109,"props":10077,"children":10078},{"style":293},[10079],{"type":30,"value":310},{"type":25,"tag":109,"props":10081,"children":10082},{"style":318},[10083],{"type":30,"value":1178},{"type":25,"tag":109,"props":10085,"children":10086},{"style":225},[10087],{"type":30,"value":10088},"#3572A5",{"type":25,"tag":109,"props":10090,"children":10091},{"style":318},[10092],{"type":30,"value":321},{"type":25,"tag":109,"props":10094,"children":10095},{"style":293},[10096],{"type":30,"value":1018},{"type":25,"tag":109,"props":10098,"children":10099},{"class":111,"line":2734},[10100,10105,10109,10113,10118,10122],{"type":25,"tag":109,"props":10101,"children":10102},{"style":302},[10103],{"type":30,"value":10104},"  Java",{"type":25,"tag":109,"props":10106,"children":10107},{"style":293},[10108],{"type":30,"value":310},{"type":25,"tag":109,"props":10110,"children":10111},{"style":318},[10112],{"type":30,"value":1178},{"type":25,"tag":109,"props":10114,"children":10115},{"style":225},[10116],{"type":30,"value":10117},"#b07219",{"type":25,"tag":109,"props":10119,"children":10120},{"style":318},[10121],{"type":30,"value":321},{"type":25,"tag":109,"props":10123,"children":10124},{"style":293},[10125],{"type":30,"value":1018},{"type":25,"tag":109,"props":10127,"children":10128},{"class":111,"line":4},[10129,10134,10138,10142,10147,10151],{"type":25,"tag":109,"props":10130,"children":10131},{"style":302},[10132],{"type":30,"value":10133},"  Go",{"type":25,"tag":109,"props":10135,"children":10136},{"style":293},[10137],{"type":30,"value":310},{"type":25,"tag":109,"props":10139,"children":10140},{"style":318},[10141],{"type":30,"value":1178},{"type":25,"tag":109,"props":10143,"children":10144},{"style":225},[10145],{"type":30,"value":10146},"#00ADD8",{"type":25,"tag":109,"props":10148,"children":10149},{"style":318},[10150],{"type":30,"value":321},{"type":25,"tag":109,"props":10152,"children":10153},{"style":293},[10154],{"type":30,"value":1018},{"type":25,"tag":109,"props":10156,"children":10157},{"class":111,"line":2774},[10158,10163,10167,10171,10176,10180],{"type":25,"tag":109,"props":10159,"children":10160},{"style":302},[10161],{"type":30,"value":10162},"  Rust",{"type":25,"tag":109,"props":10164,"children":10165},{"style":293},[10166],{"type":30,"value":310},{"type":25,"tag":109,"props":10168,"children":10169},{"style":318},[10170],{"type":30,"value":1178},{"type":25,"tag":109,"props":10172,"children":10173},{"style":225},[10174],{"type":30,"value":10175},"#dea584",{"type":25,"tag":109,"props":10177,"children":10178},{"style":318},[10179],{"type":30,"value":321},{"type":25,"tag":109,"props":10181,"children":10182},{"style":293},[10183],{"type":30,"value":1018},{"type":25,"tag":109,"props":10185,"children":10186},{"class":111,"line":2799},[10187,10192,10196,10200,10205,10209],{"type":25,"tag":109,"props":10188,"children":10189},{"style":302},[10190],{"type":30,"value":10191},"  Ruby",{"type":25,"tag":109,"props":10193,"children":10194},{"style":293},[10195],{"type":30,"value":310},{"type":25,"tag":109,"props":10197,"children":10198},{"style":318},[10199],{"type":30,"value":1178},{"type":25,"tag":109,"props":10201,"children":10202},{"style":225},[10203],{"type":30,"value":10204},"#701516",{"type":25,"tag":109,"props":10206,"children":10207},{"style":318},[10208],{"type":30,"value":321},{"type":25,"tag":109,"props":10210,"children":10211},{"style":293},[10212],{"type":30,"value":1018},{"type":25,"tag":109,"props":10214,"children":10215},{"class":111,"line":2807},[10216,10221,10225,10229,10234,10238],{"type":25,"tag":109,"props":10217,"children":10218},{"style":302},[10219],{"type":30,"value":10220},"  PHP",{"type":25,"tag":109,"props":10222,"children":10223},{"style":293},[10224],{"type":30,"value":310},{"type":25,"tag":109,"props":10226,"children":10227},{"style":318},[10228],{"type":30,"value":1178},{"type":25,"tag":109,"props":10230,"children":10231},{"style":225},[10232],{"type":30,"value":10233},"#4F5D95",{"type":25,"tag":109,"props":10235,"children":10236},{"style":318},[10237],{"type":30,"value":321},{"type":25,"tag":109,"props":10239,"children":10240},{"style":293},[10241],{"type":30,"value":1018},{"type":25,"tag":109,"props":10243,"children":10244},{"class":111,"line":2815},[10245,10250,10256,10260,10264,10268,10273,10277],{"type":25,"tag":109,"props":10246,"children":10247},{"style":318},[10248],{"type":30,"value":10249},"  '",{"type":25,"tag":109,"props":10251,"children":10253},{"style":10252},"--shiki-default:#F07178;--shiki-dark:#98C379",[10254],{"type":30,"value":10255},"C++",{"type":25,"tag":109,"props":10257,"children":10258},{"style":318},[10259],{"type":30,"value":321},{"type":25,"tag":109,"props":10261,"children":10262},{"style":293},[10263],{"type":30,"value":310},{"type":25,"tag":109,"props":10265,"children":10266},{"style":318},[10267],{"type":30,"value":1178},{"type":25,"tag":109,"props":10269,"children":10270},{"style":225},[10271],{"type":30,"value":10272},"#f34b7d",{"type":25,"tag":109,"props":10274,"children":10275},{"style":318},[10276],{"type":30,"value":321},{"type":25,"tag":109,"props":10278,"children":10279},{"style":293},[10280],{"type":30,"value":1018},{"type":25,"tag":109,"props":10282,"children":10283},{"class":111,"line":2831},[10284,10289,10293,10297,10302,10306],{"type":25,"tag":109,"props":10285,"children":10286},{"style":302},[10287],{"type":30,"value":10288},"  C",{"type":25,"tag":109,"props":10290,"children":10291},{"style":293},[10292],{"type":30,"value":310},{"type":25,"tag":109,"props":10294,"children":10295},{"style":318},[10296],{"type":30,"value":1178},{"type":25,"tag":109,"props":10298,"children":10299},{"style":225},[10300],{"type":30,"value":10301},"#555555",{"type":25,"tag":109,"props":10303,"children":10304},{"style":318},[10305],{"type":30,"value":321},{"type":25,"tag":109,"props":10307,"children":10308},{"style":293},[10309],{"type":30,"value":1018},{"type":25,"tag":109,"props":10311,"children":10312},{"class":111,"line":2852},[10313,10317,10322,10326,10330,10334,10339,10343],{"type":25,"tag":109,"props":10314,"children":10315},{"style":318},[10316],{"type":30,"value":10249},{"type":25,"tag":109,"props":10318,"children":10319},{"style":10252},[10320],{"type":30,"value":10321},"C#",{"type":25,"tag":109,"props":10323,"children":10324},{"style":318},[10325],{"type":30,"value":321},{"type":25,"tag":109,"props":10327,"children":10328},{"style":293},[10329],{"type":30,"value":310},{"type":25,"tag":109,"props":10331,"children":10332},{"style":318},[10333],{"type":30,"value":1178},{"type":25,"tag":109,"props":10335,"children":10336},{"style":225},[10337],{"type":30,"value":10338},"#178600",{"type":25,"tag":109,"props":10340,"children":10341},{"style":318},[10342],{"type":30,"value":321},{"type":25,"tag":109,"props":10344,"children":10345},{"style":293},[10346],{"type":30,"value":1018},{"type":25,"tag":109,"props":10348,"children":10349},{"class":111,"line":2874},[10350,10355,10359,10363,10368,10372],{"type":25,"tag":109,"props":10351,"children":10352},{"style":302},[10353],{"type":30,"value":10354},"  Swift",{"type":25,"tag":109,"props":10356,"children":10357},{"style":293},[10358],{"type":30,"value":310},{"type":25,"tag":109,"props":10360,"children":10361},{"style":318},[10362],{"type":30,"value":1178},{"type":25,"tag":109,"props":10364,"children":10365},{"style":225},[10366],{"type":30,"value":10367},"#F05138",{"type":25,"tag":109,"props":10369,"children":10370},{"style":318},[10371],{"type":30,"value":321},{"type":25,"tag":109,"props":10373,"children":10374},{"style":293},[10375],{"type":30,"value":1018},{"type":25,"tag":109,"props":10377,"children":10378},{"class":111,"line":2902},[10379,10384,10388,10392,10397,10401],{"type":25,"tag":109,"props":10380,"children":10381},{"style":302},[10382],{"type":30,"value":10383},"  Kotlin",{"type":25,"tag":109,"props":10385,"children":10386},{"style":293},[10387],{"type":30,"value":310},{"type":25,"tag":109,"props":10389,"children":10390},{"style":318},[10391],{"type":30,"value":1178},{"type":25,"tag":109,"props":10393,"children":10394},{"style":225},[10395],{"type":30,"value":10396},"#A97BFF",{"type":25,"tag":109,"props":10398,"children":10399},{"style":318},[10400],{"type":30,"value":321},{"type":25,"tag":109,"props":10402,"children":10403},{"style":293},[10404],{"type":30,"value":1018},{"type":25,"tag":109,"props":10406,"children":10407},{"class":111,"line":2924},[10408,10413,10417,10421,10426,10430],{"type":25,"tag":109,"props":10409,"children":10410},{"style":302},[10411],{"type":30,"value":10412},"  Dart",{"type":25,"tag":109,"props":10414,"children":10415},{"style":293},[10416],{"type":30,"value":310},{"type":25,"tag":109,"props":10418,"children":10419},{"style":318},[10420],{"type":30,"value":1178},{"type":25,"tag":109,"props":10422,"children":10423},{"style":225},[10424],{"type":30,"value":10425},"#00B4AB",{"type":25,"tag":109,"props":10427,"children":10428},{"style":318},[10429],{"type":30,"value":321},{"type":25,"tag":109,"props":10431,"children":10432},{"style":293},[10433],{"type":30,"value":1018},{"type":25,"tag":109,"props":10435,"children":10436},{"class":111,"line":2932},[10437,10442,10446,10450,10455,10459],{"type":25,"tag":109,"props":10438,"children":10439},{"style":302},[10440],{"type":30,"value":10441},"  Vue",{"type":25,"tag":109,"props":10443,"children":10444},{"style":293},[10445],{"type":30,"value":310},{"type":25,"tag":109,"props":10447,"children":10448},{"style":318},[10449],{"type":30,"value":1178},{"type":25,"tag":109,"props":10451,"children":10452},{"style":225},[10453],{"type":30,"value":10454},"#41b883",{"type":25,"tag":109,"props":10456,"children":10457},{"style":318},[10458],{"type":30,"value":321},{"type":25,"tag":109,"props":10460,"children":10461},{"style":293},[10462],{"type":30,"value":1018},{"type":25,"tag":109,"props":10464,"children":10465},{"class":111,"line":2940},[10466,10471,10475,10479,10484,10488],{"type":25,"tag":109,"props":10467,"children":10468},{"style":302},[10469],{"type":30,"value":10470},"  HTML",{"type":25,"tag":109,"props":10472,"children":10473},{"style":293},[10474],{"type":30,"value":310},{"type":25,"tag":109,"props":10476,"children":10477},{"style":318},[10478],{"type":30,"value":1178},{"type":25,"tag":109,"props":10480,"children":10481},{"style":225},[10482],{"type":30,"value":10483},"#e34c26",{"type":25,"tag":109,"props":10485,"children":10486},{"style":318},[10487],{"type":30,"value":321},{"type":25,"tag":109,"props":10489,"children":10490},{"style":293},[10491],{"type":30,"value":1018},{"type":25,"tag":109,"props":10493,"children":10494},{"class":111,"line":2957},[10495,10500,10504,10508,10513,10517],{"type":25,"tag":109,"props":10496,"children":10497},{"style":302},[10498],{"type":30,"value":10499},"  CSS",{"type":25,"tag":109,"props":10501,"children":10502},{"style":293},[10503],{"type":30,"value":310},{"type":25,"tag":109,"props":10505,"children":10506},{"style":318},[10507],{"type":30,"value":1178},{"type":25,"tag":109,"props":10509,"children":10510},{"style":225},[10511],{"type":30,"value":10512},"#563d7c",{"type":25,"tag":109,"props":10514,"children":10515},{"style":318},[10516],{"type":30,"value":321},{"type":25,"tag":109,"props":10518,"children":10519},{"style":293},[10520],{"type":30,"value":1018},{"type":25,"tag":109,"props":10522,"children":10523},{"class":111,"line":2977},[10524,10529,10533,10537,10542,10546],{"type":25,"tag":109,"props":10525,"children":10526},{"style":302},[10527],{"type":30,"value":10528},"  Shell",{"type":25,"tag":109,"props":10530,"children":10531},{"style":293},[10532],{"type":30,"value":310},{"type":25,"tag":109,"props":10534,"children":10535},{"style":318},[10536],{"type":30,"value":1178},{"type":25,"tag":109,"props":10538,"children":10539},{"style":225},[10540],{"type":30,"value":10541},"#89e051",{"type":25,"tag":109,"props":10543,"children":10544},{"style":318},[10545],{"type":30,"value":321},{"type":25,"tag":109,"props":10547,"children":10548},{"style":293},[10549],{"type":30,"value":1018},{"type":25,"tag":109,"props":10551,"children":10552},{"class":111,"line":2997},[10553],{"type":25,"tag":109,"props":10554,"children":10555},{"style":293},[10556],{"type":30,"value":1957},{"type":25,"tag":109,"props":10558,"children":10559},{"class":111,"line":3023},[10560],{"type":25,"tag":109,"props":10561,"children":10562},{"emptyLinePlaceholder":599},[10563],{"type":30,"value":602},{"type":25,"tag":109,"props":10565,"children":10566},{"class":111,"line":3043},[10567,10571,10576,10580,10584,10589,10593,10597],{"type":25,"tag":109,"props":10568,"children":10569},{"style":929},[10570],{"type":30,"value":932},{"type":25,"tag":109,"props":10572,"children":10573},{"style":1587},[10574],{"type":30,"value":10575}," getLanguageColor",{"type":25,"tag":109,"props":10577,"children":10578},{"style":941},[10579],{"type":30,"value":944},{"type":25,"tag":109,"props":10581,"children":10582},{"style":293},[10583],{"type":30,"value":1215},{"type":25,"tag":109,"props":10585,"children":10586},{"style":1218},[10587],{"type":30,"value":10588},"language",{"type":25,"tag":109,"props":10590,"children":10591},{"style":293},[10592],{"type":30,"value":1226},{"type":25,"tag":109,"props":10594,"children":10595},{"style":929},[10596],{"type":30,"value":1231},{"type":25,"tag":109,"props":10598,"children":10599},{"style":293},[10600],{"type":30,"value":975},{"type":25,"tag":109,"props":10602,"children":10603},{"class":111,"line":3051},[10604,10608,10612,10616,10620,10624,10628,10632,10637],{"type":25,"tag":109,"props":10605,"children":10606},{"style":271},[10607],{"type":30,"value":1902},{"type":25,"tag":109,"props":10609,"children":10610},{"style":995},[10611],{"type":30,"value":10001},{"type":25,"tag":109,"props":10613,"children":10614},{"style":1650},[10615],{"type":30,"value":2667},{"type":25,"tag":109,"props":10617,"children":10618},{"style":995},[10619],{"type":30,"value":10588},{"type":25,"tag":109,"props":10621,"children":10622},{"style":1650},[10623],{"type":30,"value":2685},{"type":25,"tag":109,"props":10625,"children":10626},{"style":941},[10627],{"type":30,"value":2690},{"type":25,"tag":109,"props":10629,"children":10630},{"style":318},[10631],{"type":30,"value":1178},{"type":25,"tag":109,"props":10633,"children":10634},{"style":225},[10635],{"type":30,"value":10636},"#8b949e",{"type":25,"tag":109,"props":10638,"children":10639},{"style":318},[10640],{"type":30,"value":5075},{"type":25,"tag":109,"props":10642,"children":10643},{"class":111,"line":3059},[10644],{"type":25,"tag":109,"props":10645,"children":10646},{"style":293},[10647],{"type":30,"value":1957},{"type":25,"tag":109,"props":10649,"children":10650},{"class":111,"line":3076},[10651],{"type":25,"tag":109,"props":10652,"children":10653},{"emptyLinePlaceholder":599},[10654],{"type":30,"value":602},{"type":25,"tag":109,"props":10656,"children":10657},{"class":111,"line":3096},[10658,10662,10667,10671,10675,10680,10684,10688],{"type":25,"tag":109,"props":10659,"children":10660},{"style":929},[10661],{"type":30,"value":932},{"type":25,"tag":109,"props":10663,"children":10664},{"style":1587},[10665],{"type":30,"value":10666}," formatNumber",{"type":25,"tag":109,"props":10668,"children":10669},{"style":941},[10670],{"type":30,"value":944},{"type":25,"tag":109,"props":10672,"children":10673},{"style":293},[10674],{"type":30,"value":1215},{"type":25,"tag":109,"props":10676,"children":10677},{"style":1218},[10678],{"type":30,"value":10679},"num",{"type":25,"tag":109,"props":10681,"children":10682},{"style":293},[10683],{"type":30,"value":1226},{"type":25,"tag":109,"props":10685,"children":10686},{"style":929},[10687],{"type":30,"value":1231},{"type":25,"tag":109,"props":10689,"children":10690},{"style":293},[10691],{"type":30,"value":975},{"type":25,"tag":109,"props":10693,"children":10694},{"class":111,"line":3116},[10695,10699,10703,10707,10712,10717,10721],{"type":25,"tag":109,"props":10696,"children":10697},{"style":271},[10698],{"type":30,"value":1711},{"type":25,"tag":109,"props":10700,"children":10701},{"style":1650},[10702],{"type":30,"value":1215},{"type":25,"tag":109,"props":10704,"children":10705},{"style":995},[10706],{"type":30,"value":10679},{"type":25,"tag":109,"props":10708,"children":10709},{"style":941},[10710],{"type":30,"value":10711}," >=",{"type":25,"tag":109,"props":10713,"children":10714},{"style":1034},[10715],{"type":30,"value":10716}," 1000",{"type":25,"tag":109,"props":10718,"children":10719},{"style":1650},[10720],{"type":30,"value":1794},{"type":25,"tag":109,"props":10722,"children":10723},{"style":293},[10724],{"type":30,"value":296},{"type":25,"tag":109,"props":10726,"children":10727},{"class":111,"line":3141},[10728,10732,10736,10740,10744,10748,10752,10756,10761,10765,10769,10773,10777,10781,10786],{"type":25,"tag":109,"props":10729,"children":10730},{"style":271},[10731],{"type":30,"value":5510},{"type":25,"tag":109,"props":10733,"children":10734},{"style":1650},[10735],{"type":30,"value":1215},{"type":25,"tag":109,"props":10737,"children":10738},{"style":995},[10739],{"type":30,"value":10679},{"type":25,"tag":109,"props":10741,"children":10742},{"style":941},[10743],{"type":30,"value":4136},{"type":25,"tag":109,"props":10745,"children":10746},{"style":1034},[10747],{"type":30,"value":10716},{"type":25,"tag":109,"props":10749,"children":10750},{"style":1650},[10751],{"type":30,"value":1226},{"type":25,"tag":109,"props":10753,"children":10754},{"style":293},[10755],{"type":30,"value":1290},{"type":25,"tag":109,"props":10757,"children":10758},{"style":282},[10759],{"type":30,"value":10760},"toFixed",{"type":25,"tag":109,"props":10762,"children":10763},{"style":1650},[10764],{"type":30,"value":290},{"type":25,"tag":109,"props":10766,"children":10767},{"style":1034},[10768],{"type":30,"value":6936},{"type":25,"tag":109,"props":10770,"children":10771},{"style":1650},[10772],{"type":30,"value":1794},{"type":25,"tag":109,"props":10774,"children":10775},{"style":941},[10776],{"type":30,"value":6869},{"type":25,"tag":109,"props":10778,"children":10779},{"style":318},[10780],{"type":30,"value":1178},{"type":25,"tag":109,"props":10782,"children":10783},{"style":225},[10784],{"type":30,"value":10785},"k",{"type":25,"tag":109,"props":10787,"children":10788},{"style":318},[10789],{"type":30,"value":5075},{"type":25,"tag":109,"props":10791,"children":10792},{"class":111,"line":3161},[10793],{"type":25,"tag":109,"props":10794,"children":10795},{"style":293},[10796],{"type":30,"value":1503},{"type":25,"tag":109,"props":10798,"children":10799},{"class":111,"line":3169},[10800,10804,10809,10813,10818],{"type":25,"tag":109,"props":10801,"children":10802},{"style":271},[10803],{"type":30,"value":1902},{"type":25,"tag":109,"props":10805,"children":10806},{"style":935},[10807],{"type":30,"value":10808}," num",{"type":25,"tag":109,"props":10810,"children":10811},{"style":293},[10812],{"type":30,"value":1290},{"type":25,"tag":109,"props":10814,"children":10815},{"style":282},[10816],{"type":30,"value":10817},"toString",{"type":25,"tag":109,"props":10819,"children":10820},{"style":1650},[10821],{"type":30,"value":10822},"()\n",{"type":25,"tag":109,"props":10824,"children":10825},{"class":111,"line":3177},[10826],{"type":25,"tag":109,"props":10827,"children":10828},{"style":293},[10829],{"type":30,"value":1957},{"type":25,"tag":109,"props":10831,"children":10832},{"class":111,"line":3186},[10833],{"type":25,"tag":109,"props":10834,"children":10835},{"emptyLinePlaceholder":599},[10836],{"type":30,"value":602},{"type":25,"tag":109,"props":10838,"children":10839},{"class":111,"line":3195},[10840,10844,10849,10853,10857,10862,10866,10870],{"type":25,"tag":109,"props":10841,"children":10842},{"style":929},[10843],{"type":30,"value":932},{"type":25,"tag":109,"props":10845,"children":10846},{"style":1587},[10847],{"type":30,"value":10848}," formatDate",{"type":25,"tag":109,"props":10850,"children":10851},{"style":941},[10852],{"type":30,"value":944},{"type":25,"tag":109,"props":10854,"children":10855},{"style":293},[10856],{"type":30,"value":1215},{"type":25,"tag":109,"props":10858,"children":10859},{"style":1218},[10860],{"type":30,"value":10861},"dateString",{"type":25,"tag":109,"props":10863,"children":10864},{"style":293},[10865],{"type":30,"value":1226},{"type":25,"tag":109,"props":10867,"children":10868},{"style":929},[10869],{"type":30,"value":1231},{"type":25,"tag":109,"props":10871,"children":10872},{"style":293},[10873],{"type":30,"value":975},{"type":25,"tag":109,"props":10875,"children":10876},{"class":111,"line":3204},[10877,10881,10886,10890,10895,10900,10904,10908],{"type":25,"tag":109,"props":10878,"children":10879},{"style":929},[10880],{"type":30,"value":1633},{"type":25,"tag":109,"props":10882,"children":10883},{"style":935},[10884],{"type":30,"value":10885}," date",{"type":25,"tag":109,"props":10887,"children":10888},{"style":941},[10889],{"type":30,"value":944},{"type":25,"tag":109,"props":10891,"children":10892},{"style":1797},[10893],{"type":30,"value":10894}," new",{"type":25,"tag":109,"props":10896,"children":10897},{"style":282},[10898],{"type":30,"value":10899}," Date",{"type":25,"tag":109,"props":10901,"children":10902},{"style":1650},[10903],{"type":30,"value":290},{"type":25,"tag":109,"props":10905,"children":10906},{"style":995},[10907],{"type":30,"value":10861},{"type":25,"tag":109,"props":10909,"children":10910},{"style":1650},[10911],{"type":30,"value":348},{"type":25,"tag":109,"props":10913,"children":10914},{"class":111,"line":3213},[10915,10919,10924,10928,10932,10936],{"type":25,"tag":109,"props":10916,"children":10917},{"style":929},[10918],{"type":30,"value":1633},{"type":25,"tag":109,"props":10920,"children":10921},{"style":935},[10922],{"type":30,"value":10923}," now",{"type":25,"tag":109,"props":10925,"children":10926},{"style":941},[10927],{"type":30,"value":944},{"type":25,"tag":109,"props":10929,"children":10930},{"style":1797},[10931],{"type":30,"value":10894},{"type":25,"tag":109,"props":10933,"children":10934},{"style":282},[10935],{"type":30,"value":10899},{"type":25,"tag":109,"props":10937,"children":10938},{"style":1650},[10939],{"type":30,"value":10822},{"type":25,"tag":109,"props":10941,"children":10942},{"class":111,"line":3221},[10943,10947,10952,10956,10960,10964,10969,10973,10978,10983,10987],{"type":25,"tag":109,"props":10944,"children":10945},{"style":929},[10946],{"type":30,"value":1633},{"type":25,"tag":109,"props":10948,"children":10949},{"style":935},[10950],{"type":30,"value":10951}," diffTime",{"type":25,"tag":109,"props":10953,"children":10954},{"style":941},[10955],{"type":30,"value":944},{"type":25,"tag":109,"props":10957,"children":10958},{"style":935},[10959],{"type":30,"value":1837},{"type":25,"tag":109,"props":10961,"children":10962},{"style":293},[10963],{"type":30,"value":1290},{"type":25,"tag":109,"props":10965,"children":10966},{"style":282},[10967],{"type":30,"value":10968},"abs",{"type":25,"tag":109,"props":10970,"children":10971},{"style":1650},[10972],{"type":30,"value":290},{"type":25,"tag":109,"props":10974,"children":10975},{"style":995},[10976],{"type":30,"value":10977},"now",{"type":25,"tag":109,"props":10979,"children":10980},{"style":941},[10981],{"type":30,"value":10982}," -",{"type":25,"tag":109,"props":10984,"children":10985},{"style":995},[10986],{"type":30,"value":10885},{"type":25,"tag":109,"props":10988,"children":10989},{"style":1650},[10990],{"type":30,"value":348},{"type":25,"tag":109,"props":10992,"children":10993},{"class":111,"line":3229},[10994,10998,11003,11007,11011,11015,11020,11024,11029,11033,11037,11042,11046,11051,11055,11059,11063,11067],{"type":25,"tag":109,"props":10995,"children":10996},{"style":929},[10997],{"type":30,"value":1633},{"type":25,"tag":109,"props":10999,"children":11000},{"style":935},[11001],{"type":30,"value":11002}," diffDays",{"type":25,"tag":109,"props":11004,"children":11005},{"style":941},[11006],{"type":30,"value":944},{"type":25,"tag":109,"props":11008,"children":11009},{"style":935},[11010],{"type":30,"value":1837},{"type":25,"tag":109,"props":11012,"children":11013},{"style":293},[11014],{"type":30,"value":1290},{"type":25,"tag":109,"props":11016,"children":11017},{"style":282},[11018],{"type":30,"value":11019},"ceil",{"type":25,"tag":109,"props":11021,"children":11022},{"style":1650},[11023],{"type":30,"value":290},{"type":25,"tag":109,"props":11025,"children":11026},{"style":995},[11027],{"type":30,"value":11028},"diffTime",{"type":25,"tag":109,"props":11030,"children":11031},{"style":941},[11032],{"type":30,"value":4136},{"type":25,"tag":109,"props":11034,"children":11035},{"style":1650},[11036],{"type":30,"value":1215},{"type":25,"tag":109,"props":11038,"children":11039},{"style":1034},[11040],{"type":30,"value":11041},"1000",{"type":25,"tag":109,"props":11043,"children":11044},{"style":941},[11045],{"type":30,"value":1929},{"type":25,"tag":109,"props":11047,"children":11048},{"style":1034},[11049],{"type":30,"value":11050}," 60",{"type":25,"tag":109,"props":11052,"children":11053},{"style":941},[11054],{"type":30,"value":1929},{"type":25,"tag":109,"props":11056,"children":11057},{"style":1034},[11058],{"type":30,"value":11050},{"type":25,"tag":109,"props":11060,"children":11061},{"style":941},[11062],{"type":30,"value":1929},{"type":25,"tag":109,"props":11064,"children":11065},{"style":1034},[11066],{"type":30,"value":2620},{"type":25,"tag":109,"props":11068,"children":11069},{"style":1650},[11070],{"type":30,"value":1893},{"type":25,"tag":109,"props":11072,"children":11073},{"class":111,"line":3238},[11074],{"type":25,"tag":109,"props":11075,"children":11076},{"style":1650},[11077],{"type":30,"value":5835},{"type":25,"tag":109,"props":11079,"children":11080},{"class":111,"line":3246},[11081,11085,11089,11094,11099,11104,11108,11112,11116,11121],{"type":25,"tag":109,"props":11082,"children":11083},{"style":271},[11084],{"type":30,"value":1711},{"type":25,"tag":109,"props":11086,"children":11087},{"style":1650},[11088],{"type":30,"value":1215},{"type":25,"tag":109,"props":11090,"children":11091},{"style":995},[11092],{"type":30,"value":11093},"diffDays",{"type":25,"tag":109,"props":11095,"children":11096},{"style":941},[11097],{"type":30,"value":11098}," ===",{"type":25,"tag":109,"props":11100,"children":11101},{"style":1034},[11102],{"type":30,"value":11103}," 0",{"type":25,"tag":109,"props":11105,"children":11106},{"style":1650},[11107],{"type":30,"value":1794},{"type":25,"tag":109,"props":11109,"children":11110},{"style":271},[11111],{"type":30,"value":1747},{"type":25,"tag":109,"props":11113,"children":11114},{"style":318},[11115],{"type":30,"value":1178},{"type":25,"tag":109,"props":11117,"children":11118},{"style":225},[11119],{"type":30,"value":11120},"今天",{"type":25,"tag":109,"props":11122,"children":11123},{"style":318},[11124],{"type":30,"value":5075},{"type":25,"tag":109,"props":11126,"children":11127},{"class":111,"line":3254},[11128,11132,11136,11140,11144,11148,11152,11156,11160,11165],{"type":25,"tag":109,"props":11129,"children":11130},{"style":271},[11131],{"type":30,"value":1711},{"type":25,"tag":109,"props":11133,"children":11134},{"style":1650},[11135],{"type":30,"value":1215},{"type":25,"tag":109,"props":11137,"children":11138},{"style":995},[11139],{"type":30,"value":11093},{"type":25,"tag":109,"props":11141,"children":11142},{"style":941},[11143],{"type":30,"value":11098},{"type":25,"tag":109,"props":11145,"children":11146},{"style":1034},[11147],{"type":30,"value":2917},{"type":25,"tag":109,"props":11149,"children":11150},{"style":1650},[11151],{"type":30,"value":1794},{"type":25,"tag":109,"props":11153,"children":11154},{"style":271},[11155],{"type":30,"value":1747},{"type":25,"tag":109,"props":11157,"children":11158},{"style":318},[11159],{"type":30,"value":1178},{"type":25,"tag":109,"props":11161,"children":11162},{"style":225},[11163],{"type":30,"value":11164},"昨天",{"type":25,"tag":109,"props":11166,"children":11167},{"style":318},[11168],{"type":30,"value":5075},{"type":25,"tag":109,"props":11170,"children":11171},{"class":111,"line":3263},[11172,11176,11180,11184,11189,11194,11198,11202,11206,11210,11214,11218,11223],{"type":25,"tag":109,"props":11173,"children":11174},{"style":271},[11175],{"type":30,"value":1711},{"type":25,"tag":109,"props":11177,"children":11178},{"style":1650},[11179],{"type":30,"value":1215},{"type":25,"tag":109,"props":11181,"children":11182},{"style":995},[11183],{"type":30,"value":11093},{"type":25,"tag":109,"props":11185,"children":11186},{"style":941},[11187],{"type":30,"value":11188}," \u003C",{"type":25,"tag":109,"props":11190,"children":11191},{"style":1034},[11192],{"type":30,"value":11193}," 30",{"type":25,"tag":109,"props":11195,"children":11196},{"style":1650},[11197],{"type":30,"value":1794},{"type":25,"tag":109,"props":11199,"children":11200},{"style":271},[11201],{"type":30,"value":1747},{"type":25,"tag":109,"props":11203,"children":11204},{"style":318},[11205],{"type":30,"value":6118},{"type":25,"tag":109,"props":11207,"children":11208},{"style":1797},[11209],{"type":30,"value":6128},{"type":25,"tag":109,"props":11211,"children":11212},{"style":995},[11213],{"type":30,"value":11093},{"type":25,"tag":109,"props":11215,"children":11216},{"style":1797},[11217],{"type":30,"value":343},{"type":25,"tag":109,"props":11219,"children":11220},{"style":225},[11221],{"type":30,"value":11222}," 天前",{"type":25,"tag":109,"props":11224,"children":11225},{"style":318},[11226],{"type":30,"value":6146},{"type":25,"tag":109,"props":11228,"children":11229},{"class":111,"line":6735},[11230,11234,11238,11242,11246,11251,11255,11259,11263,11267,11272,11276,11281,11285,11289,11293,11297,11301,11305,11310],{"type":25,"tag":109,"props":11231,"children":11232},{"style":271},[11233],{"type":30,"value":1711},{"type":25,"tag":109,"props":11235,"children":11236},{"style":1650},[11237],{"type":30,"value":1215},{"type":25,"tag":109,"props":11239,"children":11240},{"style":995},[11241],{"type":30,"value":11093},{"type":25,"tag":109,"props":11243,"children":11244},{"style":941},[11245],{"type":30,"value":11188},{"type":25,"tag":109,"props":11247,"children":11248},{"style":1034},[11249],{"type":30,"value":11250}," 365",{"type":25,"tag":109,"props":11252,"children":11253},{"style":1650},[11254],{"type":30,"value":1794},{"type":25,"tag":109,"props":11256,"children":11257},{"style":271},[11258],{"type":30,"value":1747},{"type":25,"tag":109,"props":11260,"children":11261},{"style":318},[11262],{"type":30,"value":6118},{"type":25,"tag":109,"props":11264,"children":11265},{"style":1797},[11266],{"type":30,"value":6128},{"type":25,"tag":109,"props":11268,"children":11269},{"style":935},[11270],{"type":30,"value":11271},"Math",{"type":25,"tag":109,"props":11273,"children":11274},{"style":293},[11275],{"type":30,"value":1290},{"type":25,"tag":109,"props":11277,"children":11278},{"style":282},[11279],{"type":30,"value":11280},"floor",{"type":25,"tag":109,"props":11282,"children":11283},{"style":116},[11284],{"type":30,"value":290},{"type":25,"tag":109,"props":11286,"children":11287},{"style":995},[11288],{"type":30,"value":11093},{"type":25,"tag":109,"props":11290,"children":11291},{"style":941},[11292],{"type":30,"value":4136},{"type":25,"tag":109,"props":11294,"children":11295},{"style":1034},[11296],{"type":30,"value":11193},{"type":25,"tag":109,"props":11298,"children":11299},{"style":116},[11300],{"type":30,"value":1226},{"type":25,"tag":109,"props":11302,"children":11303},{"style":1797},[11304],{"type":30,"value":343},{"type":25,"tag":109,"props":11306,"children":11307},{"style":225},[11308],{"type":30,"value":11309}," 个月前",{"type":25,"tag":109,"props":11311,"children":11312},{"style":318},[11313],{"type":30,"value":6146},{"type":25,"tag":109,"props":11315,"children":11316},{"class":111,"line":6760},[11317,11321,11325,11329,11333,11337,11341,11345,11349,11353,11357,11361,11365,11370],{"type":25,"tag":109,"props":11318,"children":11319},{"style":271},[11320],{"type":30,"value":1902},{"type":25,"tag":109,"props":11322,"children":11323},{"style":318},[11324],{"type":30,"value":6118},{"type":25,"tag":109,"props":11326,"children":11327},{"style":1797},[11328],{"type":30,"value":6128},{"type":25,"tag":109,"props":11330,"children":11331},{"style":935},[11332],{"type":30,"value":11271},{"type":25,"tag":109,"props":11334,"children":11335},{"style":293},[11336],{"type":30,"value":1290},{"type":25,"tag":109,"props":11338,"children":11339},{"style":282},[11340],{"type":30,"value":11280},{"type":25,"tag":109,"props":11342,"children":11343},{"style":116},[11344],{"type":30,"value":290},{"type":25,"tag":109,"props":11346,"children":11347},{"style":995},[11348],{"type":30,"value":11093},{"type":25,"tag":109,"props":11350,"children":11351},{"style":941},[11352],{"type":30,"value":4136},{"type":25,"tag":109,"props":11354,"children":11355},{"style":1034},[11356],{"type":30,"value":11250},{"type":25,"tag":109,"props":11358,"children":11359},{"style":116},[11360],{"type":30,"value":1226},{"type":25,"tag":109,"props":11362,"children":11363},{"style":1797},[11364],{"type":30,"value":343},{"type":25,"tag":109,"props":11366,"children":11367},{"style":225},[11368],{"type":30,"value":11369}," 年前",{"type":25,"tag":109,"props":11371,"children":11372},{"style":318},[11373],{"type":30,"value":6146},{"type":25,"tag":109,"props":11375,"children":11376},{"class":111,"line":6808},[11377],{"type":25,"tag":109,"props":11378,"children":11379},{"style":293},[11380],{"type":30,"value":1957},{"type":25,"tag":109,"props":11382,"children":11383},{"class":111,"line":6816},[11384],{"type":25,"tag":109,"props":11385,"children":11386},{"emptyLinePlaceholder":599},[11387],{"type":30,"value":602},{"type":25,"tag":109,"props":11389,"children":11390},{"class":111,"line":6881},[11391],{"type":25,"tag":109,"props":11392,"children":11393},{"style":1194},[11394],{"type":30,"value":11395},"// 获取仓库数据\n",{"type":25,"tag":109,"props":11397,"children":11398},{"class":111,"line":6906},[11399,11403,11408,11412,11417,11422,11426],{"type":25,"tag":109,"props":11400,"children":11401},{"style":929},[11402],{"type":30,"value":932},{"type":25,"tag":109,"props":11404,"children":11405},{"style":1587},[11406],{"type":30,"value":11407}," fetchRepoData",{"type":25,"tag":109,"props":11409,"children":11410},{"style":941},[11411],{"type":30,"value":944},{"type":25,"tag":109,"props":11413,"children":11414},{"style":929},[11415],{"type":30,"value":11416}," async",{"type":25,"tag":109,"props":11418,"children":11419},{"style":293},[11420],{"type":30,"value":11421}," ()",{"type":25,"tag":109,"props":11423,"children":11424},{"style":929},[11425],{"type":30,"value":1231},{"type":25,"tag":109,"props":11427,"children":11428},{"style":293},[11429],{"type":30,"value":975},{"type":25,"tag":109,"props":11431,"children":11432},{"class":111,"line":6955},[11433,11437,11441,11445,11449,11453,11458,11462],{"type":25,"tag":109,"props":11434,"children":11435},{"style":271},[11436],{"type":30,"value":1711},{"type":25,"tag":109,"props":11438,"children":11439},{"style":1650},[11440],{"type":30,"value":1215},{"type":25,"tag":109,"props":11442,"children":11443},{"style":941},[11444],{"type":30,"value":2432},{"type":25,"tag":109,"props":11446,"children":11447},{"style":935},[11448],{"type":30,"value":2005},{"type":25,"tag":109,"props":11450,"children":11451},{"style":293},[11452],{"type":30,"value":1290},{"type":25,"tag":109,"props":11454,"children":11455},{"style":995},[11456],{"type":30,"value":11457},"repo",{"type":25,"tag":109,"props":11459,"children":11460},{"style":1650},[11461],{"type":30,"value":1794},{"type":25,"tag":109,"props":11463,"children":11464},{"style":293},[11465],{"type":30,"value":296},{"type":25,"tag":109,"props":11467,"children":11468},{"class":111,"line":6963},[11469,11474,11478,11482,11486,11490,11495],{"type":25,"tag":109,"props":11470,"children":11471},{"style":935},[11472],{"type":30,"value":11473},"    error",{"type":25,"tag":109,"props":11475,"children":11476},{"style":293},[11477],{"type":30,"value":1290},{"type":25,"tag":109,"props":11479,"children":11480},{"style":995},[11481],{"type":30,"value":1221},{"type":25,"tag":109,"props":11483,"children":11484},{"style":941},[11485],{"type":30,"value":944},{"type":25,"tag":109,"props":11487,"children":11488},{"style":318},[11489],{"type":30,"value":1178},{"type":25,"tag":109,"props":11491,"children":11492},{"style":225},[11493],{"type":30,"value":11494},"请提供仓库名称",{"type":25,"tag":109,"props":11496,"children":11497},{"style":318},[11498],{"type":30,"value":5075},{"type":25,"tag":109,"props":11500,"children":11501},{"class":111,"line":6971},[11502,11507,11511,11515,11519],{"type":25,"tag":109,"props":11503,"children":11504},{"style":935},[11505],{"type":30,"value":11506},"    loading",{"type":25,"tag":109,"props":11508,"children":11509},{"style":293},[11510],{"type":30,"value":1290},{"type":25,"tag":109,"props":11512,"children":11513},{"style":995},[11514],{"type":30,"value":1221},{"type":25,"tag":109,"props":11516,"children":11517},{"style":941},[11518],{"type":30,"value":944},{"type":25,"tag":109,"props":11520,"children":11521},{"style":1368},[11522],{"type":30,"value":11523}," false\n",{"type":25,"tag":109,"props":11525,"children":11526},{"class":111,"line":6979},[11527],{"type":25,"tag":109,"props":11528,"children":11529},{"style":271},[11530],{"type":30,"value":11531},"    return\n",{"type":25,"tag":109,"props":11533,"children":11534},{"class":111,"line":6988},[11535],{"type":25,"tag":109,"props":11536,"children":11537},{"style":293},[11538],{"type":30,"value":1503},{"type":25,"tag":109,"props":11540,"children":11541},{"class":111,"line":7074},[11542],{"type":25,"tag":109,"props":11543,"children":11544},{"style":1650},[11545],{"type":30,"value":5835},{"type":25,"tag":109,"props":11547,"children":11548},{"class":111,"line":7201},[11549,11553],{"type":25,"tag":109,"props":11550,"children":11551},{"style":271},[11552],{"type":30,"value":6604},{"type":25,"tag":109,"props":11554,"children":11555},{"style":293},[11556],{"type":30,"value":975},{"type":25,"tag":109,"props":11558,"children":11559},{"class":111,"line":7226},[11560,11564,11568,11572,11576],{"type":25,"tag":109,"props":11561,"children":11562},{"style":935},[11563],{"type":30,"value":11506},{"type":25,"tag":109,"props":11565,"children":11566},{"style":293},[11567],{"type":30,"value":1290},{"type":25,"tag":109,"props":11569,"children":11570},{"style":995},[11571],{"type":30,"value":1221},{"type":25,"tag":109,"props":11573,"children":11574},{"style":941},[11575],{"type":30,"value":944},{"type":25,"tag":109,"props":11577,"children":11578},{"style":1368},[11579],{"type":30,"value":1371},{"type":25,"tag":109,"props":11581,"children":11582},{"class":111,"line":7274},[11583,11587,11591,11595,11599],{"type":25,"tag":109,"props":11584,"children":11585},{"style":935},[11586],{"type":30,"value":11473},{"type":25,"tag":109,"props":11588,"children":11589},{"style":293},[11590],{"type":30,"value":1290},{"type":25,"tag":109,"props":11592,"children":11593},{"style":995},[11594],{"type":30,"value":1221},{"type":25,"tag":109,"props":11596,"children":11597},{"style":941},[11598],{"type":30,"value":944},{"type":25,"tag":109,"props":11600,"children":11601},{"style":2759},[11602],{"type":30,"value":11603}," null\n",{"type":25,"tag":109,"props":11605,"children":11606},{"class":111,"line":7282},[11607],{"type":25,"tag":109,"props":11608,"children":11609},{"style":1650},[11610],{"type":30,"value":4670},{"type":25,"tag":109,"props":11612,"children":11613},{"class":111,"line":7290},[11614,11619,11624,11628,11632,11637,11641,11645,11650,11654,11658,11662,11666,11670,11674],{"type":25,"tag":109,"props":11615,"children":11616},{"style":929},[11617],{"type":30,"value":11618},"    const",{"type":25,"tag":109,"props":11620,"children":11621},{"style":935},[11622],{"type":30,"value":11623}," response",{"type":25,"tag":109,"props":11625,"children":11626},{"style":941},[11627],{"type":30,"value":944},{"type":25,"tag":109,"props":11629,"children":11630},{"style":271},[11631],{"type":30,"value":3689},{"type":25,"tag":109,"props":11633,"children":11634},{"style":282},[11635],{"type":30,"value":11636}," fetch",{"type":25,"tag":109,"props":11638,"children":11639},{"style":1650},[11640],{"type":30,"value":290},{"type":25,"tag":109,"props":11642,"children":11643},{"style":318},[11644],{"type":30,"value":6266},{"type":25,"tag":109,"props":11646,"children":11647},{"style":225},[11648],{"type":30,"value":11649},"https://api.github.com/repos/",{"type":25,"tag":109,"props":11651,"children":11652},{"style":1797},[11653],{"type":30,"value":6128},{"type":25,"tag":109,"props":11655,"children":11656},{"style":935},[11657],{"type":30,"value":2005},{"type":25,"tag":109,"props":11659,"children":11660},{"style":293},[11661],{"type":30,"value":1290},{"type":25,"tag":109,"props":11663,"children":11664},{"style":995},[11665],{"type":30,"value":11457},{"type":25,"tag":109,"props":11667,"children":11668},{"style":1797},[11669],{"type":30,"value":343},{"type":25,"tag":109,"props":11671,"children":11672},{"style":318},[11673],{"type":30,"value":6266},{"type":25,"tag":109,"props":11675,"children":11676},{"style":1650},[11677],{"type":30,"value":348},{"type":25,"tag":109,"props":11679,"children":11680},{"class":111,"line":7298},[11681],{"type":25,"tag":109,"props":11682,"children":11683},{"style":1650},[11684],{"type":30,"value":4670},{"type":25,"tag":109,"props":11686,"children":11687},{"class":111,"line":7307},[11688,11692,11696,11700,11705,11709,11714,11718],{"type":25,"tag":109,"props":11689,"children":11690},{"style":271},[11691],{"type":30,"value":6624},{"type":25,"tag":109,"props":11693,"children":11694},{"style":1650},[11695],{"type":30,"value":1215},{"type":25,"tag":109,"props":11697,"children":11698},{"style":941},[11699],{"type":30,"value":2432},{"type":25,"tag":109,"props":11701,"children":11702},{"style":935},[11703],{"type":30,"value":11704},"response",{"type":25,"tag":109,"props":11706,"children":11707},{"style":293},[11708],{"type":30,"value":1290},{"type":25,"tag":109,"props":11710,"children":11711},{"style":995},[11712],{"type":30,"value":11713},"ok",{"type":25,"tag":109,"props":11715,"children":11716},{"style":1650},[11717],{"type":30,"value":1794},{"type":25,"tag":109,"props":11719,"children":11720},{"style":293},[11721],{"type":30,"value":296},{"type":25,"tag":109,"props":11723,"children":11724},{"class":111,"line":7356},[11725,11730,11734,11739,11743,11747,11752,11756,11760,11764,11769,11773,11777],{"type":25,"tag":109,"props":11726,"children":11727},{"style":271},[11728],{"type":30,"value":11729},"      throw",{"type":25,"tag":109,"props":11731,"children":11732},{"style":1797},[11733],{"type":30,"value":10894},{"type":25,"tag":109,"props":11735,"children":11736},{"style":282},[11737],{"type":30,"value":11738}," Error",{"type":25,"tag":109,"props":11740,"children":11741},{"style":1650},[11742],{"type":30,"value":290},{"type":25,"tag":109,"props":11744,"children":11745},{"style":318},[11746],{"type":30,"value":6266},{"type":25,"tag":109,"props":11748,"children":11749},{"style":225},[11750],{"type":30,"value":11751},"GitHub API 错误: ",{"type":25,"tag":109,"props":11753,"children":11754},{"style":1797},[11755],{"type":30,"value":6128},{"type":25,"tag":109,"props":11757,"children":11758},{"style":935},[11759],{"type":30,"value":11704},{"type":25,"tag":109,"props":11761,"children":11762},{"style":293},[11763],{"type":30,"value":1290},{"type":25,"tag":109,"props":11765,"children":11766},{"style":995},[11767],{"type":30,"value":11768},"status",{"type":25,"tag":109,"props":11770,"children":11771},{"style":1797},[11772],{"type":30,"value":343},{"type":25,"tag":109,"props":11774,"children":11775},{"style":318},[11776],{"type":30,"value":6266},{"type":25,"tag":109,"props":11778,"children":11779},{"style":1650},[11780],{"type":30,"value":348},{"type":25,"tag":109,"props":11782,"children":11783},{"class":111,"line":7415},[11784],{"type":25,"tag":109,"props":11785,"children":11786},{"style":293},[11787],{"type":30,"value":5574},{"type":25,"tag":109,"props":11789,"children":11790},{"class":111,"line":7423},[11791],{"type":25,"tag":109,"props":11792,"children":11793},{"style":1650},[11794],{"type":30,"value":4670},{"type":25,"tag":109,"props":11796,"children":11797},{"class":111,"line":7431},[11798,11803,11807,11811,11815,11819,11823,11827,11832],{"type":25,"tag":109,"props":11799,"children":11800},{"style":935},[11801],{"type":30,"value":11802},"    repoData",{"type":25,"tag":109,"props":11804,"children":11805},{"style":293},[11806],{"type":30,"value":1290},{"type":25,"tag":109,"props":11808,"children":11809},{"style":995},[11810],{"type":30,"value":1221},{"type":25,"tag":109,"props":11812,"children":11813},{"style":941},[11814],{"type":30,"value":944},{"type":25,"tag":109,"props":11816,"children":11817},{"style":271},[11818],{"type":30,"value":3689},{"type":25,"tag":109,"props":11820,"children":11821},{"style":935},[11822],{"type":30,"value":11623},{"type":25,"tag":109,"props":11824,"children":11825},{"style":293},[11826],{"type":30,"value":1290},{"type":25,"tag":109,"props":11828,"children":11829},{"style":282},[11830],{"type":30,"value":11831},"json",{"type":25,"tag":109,"props":11833,"children":11834},{"style":1650},[11835],{"type":30,"value":10822},{"type":25,"tag":109,"props":11837,"children":11838},{"class":111,"line":7440},[11839,11843,11847,11851,11855,11859],{"type":25,"tag":109,"props":11840,"children":11841},{"style":293},[11842],{"type":30,"value":7459},{"type":25,"tag":109,"props":11844,"children":11845},{"style":271},[11846],{"type":30,"value":7464},{"type":25,"tag":109,"props":11848,"children":11849},{"style":1650},[11850],{"type":30,"value":1215},{"type":25,"tag":109,"props":11852,"children":11853},{"style":995},[11854],{"type":30,"value":7473},{"type":25,"tag":109,"props":11856,"children":11857},{"style":1650},[11858],{"type":30,"value":1794},{"type":25,"tag":109,"props":11860,"children":11861},{"style":293},[11862],{"type":30,"value":296},{"type":25,"tag":109,"props":11864,"children":11865},{"class":111,"line":7453},[11866,11870,11874,11878,11882,11886,11891,11895,11899,11903,11908,11912],{"type":25,"tag":109,"props":11867,"children":11868},{"style":935},[11869],{"type":30,"value":11473},{"type":25,"tag":109,"props":11871,"children":11872},{"style":293},[11873],{"type":30,"value":1290},{"type":25,"tag":109,"props":11875,"children":11876},{"style":995},[11877],{"type":30,"value":1221},{"type":25,"tag":109,"props":11879,"children":11880},{"style":941},[11881],{"type":30,"value":944},{"type":25,"tag":109,"props":11883,"children":11884},{"style":318},[11885],{"type":30,"value":6118},{"type":25,"tag":109,"props":11887,"children":11888},{"style":225},[11889],{"type":30,"value":11890},"加载失败: ",{"type":25,"tag":109,"props":11892,"children":11893},{"style":1797},[11894],{"type":30,"value":6128},{"type":25,"tag":109,"props":11896,"children":11897},{"style":935},[11898],{"type":30,"value":7473},{"type":25,"tag":109,"props":11900,"children":11901},{"style":293},[11902],{"type":30,"value":1290},{"type":25,"tag":109,"props":11904,"children":11905},{"style":995},[11906],{"type":30,"value":11907},"message",{"type":25,"tag":109,"props":11909,"children":11910},{"style":1797},[11911],{"type":30,"value":343},{"type":25,"tag":109,"props":11913,"children":11914},{"style":318},[11915],{"type":30,"value":6146},{"type":25,"tag":109,"props":11917,"children":11918},{"class":111,"line":7484},[11919,11923,11927,11931,11935,11939,11944,11948,11952,11956],{"type":25,"tag":109,"props":11920,"children":11921},{"style":935},[11922],{"type":30,"value":7490},{"type":25,"tag":109,"props":11924,"children":11925},{"style":293},[11926],{"type":30,"value":1290},{"type":25,"tag":109,"props":11928,"children":11929},{"style":282},[11930],{"type":30,"value":7499},{"type":25,"tag":109,"props":11932,"children":11933},{"style":1650},[11934],{"type":30,"value":290},{"type":25,"tag":109,"props":11936,"children":11937},{"style":318},[11938],{"type":30,"value":321},{"type":25,"tag":109,"props":11940,"children":11941},{"style":225},[11942],{"type":30,"value":11943},"GitHub Card Error:",{"type":25,"tag":109,"props":11945,"children":11946},{"style":318},[11947],{"type":30,"value":321},{"type":25,"tag":109,"props":11949,"children":11950},{"style":293},[11951],{"type":30,"value":1003},{"type":25,"tag":109,"props":11953,"children":11954},{"style":995},[11955],{"type":30,"value":7525},{"type":25,"tag":109,"props":11957,"children":11958},{"style":1650},[11959],{"type":30,"value":348},{"type":25,"tag":109,"props":11961,"children":11962},{"class":111,"line":7532},[11963,11967,11972],{"type":25,"tag":109,"props":11964,"children":11965},{"style":293},[11966],{"type":30,"value":7459},{"type":25,"tag":109,"props":11968,"children":11969},{"style":271},[11970],{"type":30,"value":11971}," finally",{"type":25,"tag":109,"props":11973,"children":11974},{"style":293},[11975],{"type":30,"value":975},{"type":25,"tag":109,"props":11977,"children":11978},{"class":111,"line":7544},[11979,11983,11987,11991,11995],{"type":25,"tag":109,"props":11980,"children":11981},{"style":935},[11982],{"type":30,"value":11506},{"type":25,"tag":109,"props":11984,"children":11985},{"style":293},[11986],{"type":30,"value":1290},{"type":25,"tag":109,"props":11988,"children":11989},{"style":995},[11990],{"type":30,"value":1221},{"type":25,"tag":109,"props":11992,"children":11993},{"style":941},[11994],{"type":30,"value":944},{"type":25,"tag":109,"props":11996,"children":11997},{"style":1368},[11998],{"type":30,"value":11523},{"type":25,"tag":109,"props":12000,"children":12001},{"class":111,"line":7552},[12002],{"type":25,"tag":109,"props":12003,"children":12004},{"style":293},[12005],{"type":30,"value":1503},{"type":25,"tag":109,"props":12007,"children":12008},{"class":111,"line":7560},[12009],{"type":25,"tag":109,"props":12010,"children":12011},{"style":293},[12012],{"type":30,"value":1957},{"type":25,"tag":109,"props":12014,"children":12015},{"class":111,"line":7576},[12016],{"type":25,"tag":109,"props":12017,"children":12018},{"emptyLinePlaceholder":599},[12019],{"type":30,"value":602},{"type":25,"tag":109,"props":12021,"children":12022},{"class":111,"line":7584},[12023,12028,12032,12036,12040],{"type":25,"tag":109,"props":12024,"children":12025},{"style":282},[12026],{"type":30,"value":12027},"onMounted",{"type":25,"tag":109,"props":12029,"children":12030},{"style":116},[12031],{"type":30,"value":290},{"type":25,"tag":109,"props":12033,"children":12034},{"style":293},[12035],{"type":30,"value":2242},{"type":25,"tag":109,"props":12037,"children":12038},{"style":929},[12039],{"type":30,"value":1231},{"type":25,"tag":109,"props":12041,"children":12042},{"style":293},[12043],{"type":30,"value":975},{"type":25,"tag":109,"props":12045,"children":12046},{"class":111,"line":7604},[12047,12052],{"type":25,"tag":109,"props":12048,"children":12049},{"style":282},[12050],{"type":30,"value":12051},"  fetchRepoData",{"type":25,"tag":109,"props":12053,"children":12054},{"style":1650},[12055],{"type":30,"value":10822},{"type":25,"tag":109,"props":12057,"children":12058},{"class":111,"line":7621},[12059,12063],{"type":25,"tag":109,"props":12060,"children":12061},{"style":293},[12062],{"type":30,"value":343},{"type":25,"tag":109,"props":12064,"children":12065},{"style":116},[12066],{"type":30,"value":348},{"type":25,"tag":109,"props":12068,"children":12069},{"class":111,"line":7643},[12070],{"type":25,"tag":109,"props":12071,"children":12072},{"emptyLinePlaceholder":599},[12073],{"type":30,"value":602},{"type":25,"tag":109,"props":12075,"children":12076},{"class":111,"line":7670},[12077,12081,12085,12089,12093,12097,12101,12105,12109,12113,12117],{"type":25,"tag":109,"props":12078,"children":12079},{"style":282},[12080],{"type":30,"value":2050},{"type":25,"tag":109,"props":12082,"children":12083},{"style":116},[12084],{"type":30,"value":290},{"type":25,"tag":109,"props":12086,"children":12087},{"style":293},[12088],{"type":30,"value":2242},{"type":25,"tag":109,"props":12090,"children":12091},{"style":929},[12092],{"type":30,"value":1231},{"type":25,"tag":109,"props":12094,"children":12095},{"style":935},[12096],{"type":30,"value":938},{"type":25,"tag":109,"props":12098,"children":12099},{"style":293},[12100],{"type":30,"value":1290},{"type":25,"tag":109,"props":12102,"children":12103},{"style":995},[12104],{"type":30,"value":11457},{"type":25,"tag":109,"props":12106,"children":12107},{"style":293},[12108],{"type":30,"value":1003},{"type":25,"tag":109,"props":12110,"children":12111},{"style":293},[12112],{"type":30,"value":11421},{"type":25,"tag":109,"props":12114,"children":12115},{"style":929},[12116],{"type":30,"value":1231},{"type":25,"tag":109,"props":12118,"children":12119},{"style":293},[12120],{"type":30,"value":975},{"type":25,"tag":109,"props":12122,"children":12123},{"class":111,"line":7678},[12124,12128],{"type":25,"tag":109,"props":12125,"children":12126},{"style":282},[12127],{"type":30,"value":12051},{"type":25,"tag":109,"props":12129,"children":12130},{"style":1650},[12131],{"type":30,"value":10822},{"type":25,"tag":109,"props":12133,"children":12134},{"class":111,"line":7686},[12135,12139],{"type":25,"tag":109,"props":12136,"children":12137},{"style":293},[12138],{"type":30,"value":343},{"type":25,"tag":109,"props":12140,"children":12141},{"style":116},[12142],{"type":30,"value":348},{"type":25,"tag":109,"props":12144,"children":12145},{"class":111,"line":7718},[12146,12150,12154],{"type":25,"tag":109,"props":12147,"children":12148},{"style":293},[12149],{"type":30,"value":876},{"type":25,"tag":109,"props":12151,"children":12152},{"style":302},[12153],{"type":30,"value":905},{"type":25,"tag":109,"props":12155,"children":12156},{"style":293},[12157],{"type":30,"value":427},{"type":25,"tag":109,"props":12159,"children":12160},{"class":111,"line":7744},[12161],{"type":25,"tag":109,"props":12162,"children":12163},{"emptyLinePlaceholder":599},[12164],{"type":30,"value":602},{"type":25,"tag":109,"props":12166,"children":12167},{"class":111,"line":7768},[12168,12172,12176,12180],{"type":25,"tag":109,"props":12169,"children":12170},{"style":293},[12171],{"type":30,"value":418},{"type":25,"tag":109,"props":12173,"children":12174},{"style":302},[12175],{"type":30,"value":2744},{"type":25,"tag":109,"props":12177,"children":12178},{"style":443},[12179],{"type":30,"value":2749},{"type":25,"tag":109,"props":12181,"children":12182},{"style":293},[12183],{"type":30,"value":427},{"type":25,"tag":109,"props":12185,"children":12186},{"class":111,"line":7776},[12187,12191,12196],{"type":25,"tag":109,"props":12188,"children":12189},{"style":2759},[12190],{"type":30,"value":1290},{"type":25,"tag":109,"props":12192,"children":12193},{"style":2764},[12194],{"type":30,"value":12195},"github-card-mdc",{"type":25,"tag":109,"props":12197,"children":12198},{"style":293},[12199],{"type":30,"value":975},{"type":25,"tag":109,"props":12201,"children":12203},{"class":111,"line":12202},174,[12204,12209,12213,12218,12222,12227,12231,12235,12240,12244,12248,12252,12257,12261,12265,12270,12274,12279,12283,12288],{"type":25,"tag":109,"props":12205,"children":12206},{"style":2778},[12207],{"type":30,"value":12208},"  font-family",{"type":25,"tag":109,"props":12210,"children":12211},{"style":293},[12212],{"type":30,"value":310},{"type":25,"tag":109,"props":12214,"children":12215},{"style":116},[12216],{"type":30,"value":12217}," -apple-system",{"type":25,"tag":109,"props":12219,"children":12220},{"style":293},[12221],{"type":30,"value":1003},{"type":25,"tag":109,"props":12223,"children":12224},{"style":116},[12225],{"type":30,"value":12226}," BlinkMacSystemFont",{"type":25,"tag":109,"props":12228,"children":12229},{"style":293},[12230],{"type":30,"value":1003},{"type":25,"tag":109,"props":12232,"children":12233},{"style":318},[12234],{"type":30,"value":1178},{"type":25,"tag":109,"props":12236,"children":12237},{"style":225},[12238],{"type":30,"value":12239},"Segoe UI",{"type":25,"tag":109,"props":12241,"children":12242},{"style":318},[12243],{"type":30,"value":321},{"type":25,"tag":109,"props":12245,"children":12246},{"style":293},[12247],{"type":30,"value":1003},{"type":25,"tag":109,"props":12249,"children":12250},{"style":318},[12251],{"type":30,"value":1178},{"type":25,"tag":109,"props":12253,"children":12254},{"style":225},[12255],{"type":30,"value":12256},"Noto Sans",{"type":25,"tag":109,"props":12258,"children":12259},{"style":318},[12260],{"type":30,"value":321},{"type":25,"tag":109,"props":12262,"children":12263},{"style":293},[12264],{"type":30,"value":1003},{"type":25,"tag":109,"props":12266,"children":12267},{"style":2788},[12268],{"type":30,"value":12269}," Helvetica",{"type":25,"tag":109,"props":12271,"children":12272},{"style":293},[12273],{"type":30,"value":1003},{"type":25,"tag":109,"props":12275,"children":12276},{"style":2788},[12277],{"type":30,"value":12278}," Arial",{"type":25,"tag":109,"props":12280,"children":12281},{"style":293},[12282],{"type":30,"value":1003},{"type":25,"tag":109,"props":12284,"children":12285},{"style":2788},[12286],{"type":30,"value":12287}," sans-serif",{"type":25,"tag":109,"props":12289,"children":12290},{"style":293},[12291],{"type":30,"value":2796},{"type":25,"tag":109,"props":12293,"children":12295},{"class":111,"line":12294},175,[12296],{"type":25,"tag":109,"props":12297,"children":12298},{"style":293},[12299],{"type":30,"value":1957},{"type":25,"tag":109,"props":12301,"children":12303},{"class":111,"line":12302},176,[12304],{"type":25,"tag":109,"props":12305,"children":12306},{"emptyLinePlaceholder":599},[12307],{"type":30,"value":602},{"type":25,"tag":109,"props":12309,"children":12311},{"class":111,"line":12310},177,[12312],{"type":25,"tag":109,"props":12313,"children":12314},{"style":1194},[12315],{"type":30,"value":12316},"/* 保留装饰性光晕在暗色模式下的增强效果 */\n",{"type":25,"tag":109,"props":12318,"children":12320},{"class":111,"line":12319},178,[12321,12325,12330,12335,12339,12343,12349],{"type":25,"tag":109,"props":12322,"children":12323},{"style":2759},[12324],{"type":30,"value":1290},{"type":25,"tag":109,"props":12326,"children":12327},{"style":2764},[12328],{"type":30,"value":12329},"dark",{"type":25,"tag":109,"props":12331,"children":12332},{"style":2759},[12333],{"type":30,"value":12334}," .",{"type":25,"tag":109,"props":12336,"children":12337},{"style":2764},[12338],{"type":30,"value":3828},{"type":25,"tag":109,"props":12340,"children":12341},{"style":941},[12342],{"type":30,"value":310},{"type":25,"tag":109,"props":12344,"children":12346},{"style":12345},"--shiki-default:#C792EA;--shiki-dark:#56B6C2",[12347],{"type":30,"value":12348},"hover",{"type":25,"tag":109,"props":12350,"children":12351},{"style":293},[12352],{"type":30,"value":975},{"type":25,"tag":109,"props":12354,"children":12356},{"class":111,"line":12355},179,[12357,12362,12366,12372,12376,12381,12385,12390,12394,12399,12403,12408],{"type":25,"tag":109,"props":12358,"children":12359},{"style":2778},[12360],{"type":30,"value":12361},"  border-color",{"type":25,"tag":109,"props":12363,"children":12364},{"style":293},[12365],{"type":30,"value":310},{"type":25,"tag":109,"props":12367,"children":12369},{"style":12368},"--shiki-default:#82AAFF;--shiki-dark:#56B6C2",[12370],{"type":30,"value":12371}," rgba",{"type":25,"tag":109,"props":12373,"children":12374},{"style":293},[12375],{"type":30,"value":290},{"type":25,"tag":109,"props":12377,"children":12378},{"style":1034},[12379],{"type":30,"value":12380},"56",{"type":25,"tag":109,"props":12382,"children":12383},{"style":293},[12384],{"type":30,"value":1003},{"type":25,"tag":109,"props":12386,"children":12387},{"style":1034},[12388],{"type":30,"value":12389}," 189",{"type":25,"tag":109,"props":12391,"children":12392},{"style":293},[12393],{"type":30,"value":1003},{"type":25,"tag":109,"props":12395,"children":12396},{"style":1034},[12397],{"type":30,"value":12398}," 248",{"type":25,"tag":109,"props":12400,"children":12401},{"style":293},[12402],{"type":30,"value":1003},{"type":25,"tag":109,"props":12404,"children":12405},{"style":1034},[12406],{"type":30,"value":12407}," 0.3",{"type":25,"tag":109,"props":12409,"children":12410},{"style":293},[12411],{"type":30,"value":12412},");\n",{"type":25,"tag":109,"props":12414,"children":12416},{"class":111,"line":12415},180,[12417],{"type":25,"tag":109,"props":12418,"children":12419},{"style":293},[12420],{"type":30,"value":1957},{"type":25,"tag":109,"props":12422,"children":12424},{"class":111,"line":12423},181,[12425],{"type":25,"tag":109,"props":12426,"children":12427},{"emptyLinePlaceholder":599},[12428],{"type":30,"value":602},{"type":25,"tag":109,"props":12430,"children":12432},{"class":111,"line":12431},182,[12433],{"type":25,"tag":109,"props":12434,"children":12435},{"style":1194},[12436],{"type":30,"value":12437},"/* 暗色模式下仓库名称的文字发光效果 */\n",{"type":25,"tag":109,"props":12439,"children":12441},{"class":111,"line":12440},183,[12442,12446,12450,12454,12459],{"type":25,"tag":109,"props":12443,"children":12444},{"style":2759},[12445],{"type":30,"value":1290},{"type":25,"tag":109,"props":12447,"children":12448},{"style":2764},[12449],{"type":30,"value":12329},{"type":25,"tag":109,"props":12451,"children":12452},{"style":2759},[12453],{"type":30,"value":12334},{"type":25,"tag":109,"props":12455,"children":12456},{"style":2764},[12457],{"type":30,"value":12458},"repo-name",{"type":25,"tag":109,"props":12460,"children":12461},{"style":293},[12462],{"type":30,"value":975},{"type":25,"tag":109,"props":12464,"children":12466},{"class":111,"line":12465},184,[12467,12472,12476,12480,12484,12489,12494,12498,12502,12506,12510,12514,12518,12522,12526,12531],{"type":25,"tag":109,"props":12468,"children":12469},{"style":2778},[12470],{"type":30,"value":12471},"  text-shadow",{"type":25,"tag":109,"props":12473,"children":12474},{"style":293},[12475],{"type":30,"value":310},{"type":25,"tag":109,"props":12477,"children":12478},{"style":1034},[12479],{"type":30,"value":11103},{"type":25,"tag":109,"props":12481,"children":12482},{"style":1034},[12483],{"type":30,"value":11103},{"type":25,"tag":109,"props":12485,"children":12486},{"style":1034},[12487],{"type":30,"value":12488}," 12",{"type":25,"tag":109,"props":12490,"children":12491},{"style":2892},[12492],{"type":30,"value":12493},"px",{"type":25,"tag":109,"props":12495,"children":12496},{"style":12368},[12497],{"type":30,"value":12371},{"type":25,"tag":109,"props":12499,"children":12500},{"style":293},[12501],{"type":30,"value":290},{"type":25,"tag":109,"props":12503,"children":12504},{"style":1034},[12505],{"type":30,"value":12380},{"type":25,"tag":109,"props":12507,"children":12508},{"style":293},[12509],{"type":30,"value":1003},{"type":25,"tag":109,"props":12511,"children":12512},{"style":1034},[12513],{"type":30,"value":12389},{"type":25,"tag":109,"props":12515,"children":12516},{"style":293},[12517],{"type":30,"value":1003},{"type":25,"tag":109,"props":12519,"children":12520},{"style":1034},[12521],{"type":30,"value":12398},{"type":25,"tag":109,"props":12523,"children":12524},{"style":293},[12525],{"type":30,"value":1003},{"type":25,"tag":109,"props":12527,"children":12528},{"style":1034},[12529],{"type":30,"value":12530}," 0.25",{"type":25,"tag":109,"props":12532,"children":12533},{"style":293},[12534],{"type":30,"value":12412},{"type":25,"tag":109,"props":12536,"children":12538},{"class":111,"line":12537},185,[12539],{"type":25,"tag":109,"props":12540,"children":12541},{"style":293},[12542],{"type":30,"value":1957},{"type":25,"tag":109,"props":12544,"children":12546},{"class":111,"line":12545},186,[12547],{"type":25,"tag":109,"props":12548,"children":12549},{"emptyLinePlaceholder":599},[12550],{"type":30,"value":602},{"type":25,"tag":109,"props":12552,"children":12554},{"class":111,"line":12553},187,[12555],{"type":25,"tag":109,"props":12556,"children":12557},{"style":1194},[12558],{"type":30,"value":12559},"/* 暗色模式下语言点的外光晕 */\n",{"type":25,"tag":109,"props":12561,"children":12563},{"class":111,"line":12562},188,[12564,12568,12572,12576,12581],{"type":25,"tag":109,"props":12565,"children":12566},{"style":2759},[12567],{"type":30,"value":1290},{"type":25,"tag":109,"props":12569,"children":12570},{"style":2764},[12571],{"type":30,"value":12329},{"type":25,"tag":109,"props":12573,"children":12574},{"style":2759},[12575],{"type":30,"value":12334},{"type":25,"tag":109,"props":12577,"children":12578},{"style":2764},[12579],{"type":30,"value":12580},"language-dot",{"type":25,"tag":109,"props":12582,"children":12583},{"style":293},[12584],{"type":30,"value":975},{"type":25,"tag":109,"props":12586,"children":12588},{"class":111,"line":12587},189,[12589,12594,12598,12602,12606,12611,12615,12619,12624,12628,12633,12637,12642,12646,12650],{"type":25,"tag":109,"props":12590,"children":12591},{"style":2778},[12592],{"type":30,"value":12593},"  border",{"type":25,"tag":109,"props":12595,"children":12596},{"style":293},[12597],{"type":30,"value":310},{"type":25,"tag":109,"props":12599,"children":12600},{"style":1034},[12601],{"type":30,"value":2917},{"type":25,"tag":109,"props":12603,"children":12604},{"style":2892},[12605],{"type":30,"value":12493},{"type":25,"tag":109,"props":12607,"children":12608},{"style":2788},[12609],{"type":30,"value":12610}," solid",{"type":25,"tag":109,"props":12612,"children":12613},{"style":12368},[12614],{"type":30,"value":12371},{"type":25,"tag":109,"props":12616,"children":12617},{"style":293},[12618],{"type":30,"value":290},{"type":25,"tag":109,"props":12620,"children":12621},{"style":1034},[12622],{"type":30,"value":12623},"148",{"type":25,"tag":109,"props":12625,"children":12626},{"style":293},[12627],{"type":30,"value":1003},{"type":25,"tag":109,"props":12629,"children":12630},{"style":1034},[12631],{"type":30,"value":12632}," 163",{"type":25,"tag":109,"props":12634,"children":12635},{"style":293},[12636],{"type":30,"value":1003},{"type":25,"tag":109,"props":12638,"children":12639},{"style":1034},[12640],{"type":30,"value":12641}," 184",{"type":25,"tag":109,"props":12643,"children":12644},{"style":293},[12645],{"type":30,"value":1003},{"type":25,"tag":109,"props":12647,"children":12648},{"style":1034},[12649],{"type":30,"value":12407},{"type":25,"tag":109,"props":12651,"children":12652},{"style":293},[12653],{"type":30,"value":12412},{"type":25,"tag":109,"props":12655,"children":12657},{"class":111,"line":12656},190,[12658],{"type":25,"tag":109,"props":12659,"children":12660},{"style":293},[12661],{"type":30,"value":1957},{"type":25,"tag":109,"props":12663,"children":12665},{"class":111,"line":12664},191,[12666,12670,12674],{"type":25,"tag":109,"props":12667,"children":12668},{"style":293},[12669],{"type":30,"value":876},{"type":25,"tag":109,"props":12671,"children":12672},{"style":302},[12673],{"type":30,"value":2744},{"type":25,"tag":109,"props":12675,"children":12676},{"style":293},[12677],{"type":30,"value":427},{"type":25,"tag":173,"props":12679,"children":12680},{"v-slot:tab-2":19},[12681],{"type":25,"tag":98,"props":12682,"children":12684},{"className":404,"code":12683,"language":406,"meta":19,"style":19},"\u003Ctemplate>\n  \u003Cdiv class=\"steps-mdc my-6 p-4 bg-gradient-to-br from-gray-50 to-gray-100 dark:from-gray-900 dark:via-gray-900 dark:to-gray-800 rounded-lg border border-gray-200 dark:border-gray-700 relative overflow-hidden\">\n    \u003C!-- 装饰性光晕效果 -->\n    \u003Cdiv class=\"absolute inset-0 bg-gradient-to-br from-blue-50/70 via-transparent to-transparent dark:from-sky-500/15 dark:via-transparent dark:to-transparent pointer-events-none\">\u003C/div>\n    \n    \u003C!-- 内容区域 -->\n    \u003Cdiv class=\"relative z-10\">\n      \u003Cn-steps\n        :current=\"currentStep\"\n        :status=\"status\"\n        :vertical=\"vertical\"\n        :size=\"size\"\n        @update:current=\"onStepChange\"\n      >\n        \u003Cn-step\n          v-for=\"(step, index) in stepsList\"\n          :key=\"index\"\n          :title=\"step.title\"\n          :description=\"step.description\"\n        />\n      \u003C/n-steps>\n      \n      \u003C!-- 控制按钮（可选） -->\n      \u003Cdiv v-if=\"showControls\" class=\"steps-controls flex justify-end gap-3 mt-6 pt-4 border-t border-gray-200 dark:border-gray-700\" :class=\"{ 'justify-center': vertical }\">\n        \u003Cn-button\n          :disabled=\"currentStep \u003C= 1\"\n          @click=\"prevStep\"\n          secondary\n        >\n          \u003Ctemplate #icon>\n            \u003CIcon name=\"mdi:chevron-left\" />\n          \u003C/template>\n          上一步\n        \u003C/n-button>\n        \n        \u003Cn-button\n          v-if=\"currentStep \u003C stepsList.length\"\n          :disabled=\"currentStep >= stepsList.length\"\n          @click=\"nextStep\"\n          type=\"primary\"\n        >\n          下一步\n          \u003Ctemplate #icon>\n            \u003CIcon name=\"mdi:chevron-right\" />\n          \u003C/template>\n        \u003C/n-button>\n        \n        \u003Cn-button\n          v-else\n          type=\"success\"\n          @click=\"onComplete\"\n        >\n          \u003Ctemplate #icon>\n            \u003CIcon name=\"mdi:check\" />\n          \u003C/template>\n          完成\n        \u003C/n-button>\n      \u003C/div>\n    \u003C/div>\n  \u003C/div>\n\u003C/template>\n\n\u003Cscript setup>\n/**\n * Steps 步骤条组件 - MDC 语法\n * \n * 在 Markdown 中使用：\n * ::steps{current=\"2\" status=\"process\"}\n * ---\n * steps:\n *   - title: \"第一步\"\n *     description: \"注册账号\"\n *   - title: \"第二步\"\n *     description: \"完善信息\"\n *   - title: \"第三步\"\n *     description: \"开始使用\"\n * ---\n * ::\n * \n * 垂直布局带控制按钮：\n * ::steps{current=\"1\" vertical showControls}\n * ---\n * steps:\n *   - title: \"安装依赖\"\n *     description: \"npm install\"\n *   - title: \"配置文件\"\n *     description: \"修改 config.js\"\n *   - title: \"运行项目\"\n *     description: \"npm run dev\"\n * ---\n * ::\n * \n * 可点击步骤：\n * ::steps{current=\"2\" clickable showControls}\n * ---\n * steps:\n *   - title: \"选择模板\"\n *   - title: \"填写信息\"\n *   - title: \"确认提交\"\n * ---\n * ::\n */\n\nconst props = defineProps({\n  // 当前步骤（从1开始）\n  current: {\n    type: [Number, String],\n    default: 1\n  },\n  // 当前步骤状态: process | finish | error | wait\n  status: {\n    type: String,\n    default: 'process',\n    validator: (value) => ['process', 'finish', 'error', 'wait'].includes(value)\n  },\n  // 是否垂直布局\n  vertical: {\n    type: Boolean,\n    default: false\n  },\n  // 尺寸: small | medium\n  size: {\n    type: String,\n    default: 'medium',\n    validator: (value) => ['small', 'medium'].includes(value)\n  },\n  // 步骤列表（从 YAML frontmatter 传入）\n  steps: {\n    type: Array,\n    default: () => []\n  },\n  // 是否显示控制按钮\n  showControls: {\n    type: Boolean,\n    default: false\n  },\n  // 是否可点击步骤跳转\n  clickable: {\n    type: Boolean,\n    default: false\n  }\n})\n\nconst emit = defineEmits(['update:current', 'change', 'complete'])\n\nconst currentStep = ref(Number(props.current) || 1)\n\nwatch(() => props.current, (newVal) => {\n  currentStep.value = Number(newVal) || 1\n})\n\nconst stepsList = computed(() => {\n  return props.steps || []\n})\n\nconst prevStep = () => {\n  if (currentStep.value > 1) {\n    currentStep.value--\n    emit('update:current', currentStep.value)\n    emit('change', currentStep.value)\n  }\n}\n\nconst nextStep = () => {\n  if (currentStep.value \u003C stepsList.value.length) {\n    currentStep.value++\n    emit('update:current', currentStep.value)\n    emit('change', currentStep.value)\n  }\n}\n\nconst onStepChange = (value) => {\n  if (props.clickable) {\n    currentStep.value = value\n    emit('update:current', value)\n    emit('change', value)\n  }\n}\n\nconst onComplete = () => {\n  emit('complete')\n}\n\u003C/script>\n\n\u003Cstyle scoped>\n/* 暗色模式下 n-steps 组件的颜色调整 */\n.dark .steps-mdc :deep(.n-step__title) {\n  color: #e2e8f0;\n}\n\n.dark .steps-mdc :deep(.n-step__description) {\n  color: #94a3b8;\n}\n\n.dark .steps-mdc :deep(.n-step__indicator) {\n  background: #0f172a;\n  border: 1px solid #334155;\n  color: #e2e8f0;\n}\n\n.dark .steps-mdc :deep(.n-step__line) {\n  background: linear-gradient(90deg, #1f2937, #334155);\n}\n\n.dark .steps-mdc :deep(.n-step--process .n-step__indicator) {\n  background: #0b1220;\n  border-color: #38bdf8;\n  color: #e0f2fe;\n}\n\n.dark .steps-mdc :deep(.n-step--finish .n-step__indicator) {\n  background: #052e2b;\n  border-color: #34d399;\n  color: #d1fae5;\n}\n\n.dark .steps-mdc :deep(.n-step--error .n-step__indicator) {\n  background: #3b1d2a;\n  border-color: #f87171;\n  color: #fecaca;\n}\n\n.dark .steps-mdc :deep(.n-step--finish .n-step__line) {\n  background: linear-gradient(90deg, #10b981, #34d399);\n}\n\n.dark .steps-mdc :deep(.n-step--process .n-step__line) {\n  background: linear-gradient(90deg, #38bdf8, #0ea5e9);\n}\n\n.dark .steps-mdc :deep(.n-step--error .n-step__line) {\n  background: linear-gradient(90deg, #f87171, #ef4444);\n}\n\n@media (max-width: 640px) {\n  .steps-controls {\n    justify-content: center;\n  }\n}\n\u003C/style>\n\n",[12685],{"type":25,"tag":105,"props":12686,"children":12687},{"__ignoreMap":19},[12688,12703,12739,12747,12791,12798,12806,12841,12853,12878,12902,12927,12950,12975,12983,12995,13020,13045,13070,13095,13103,13119,13126,13134,13213,13225,13250,13275,13283,13291,13315,13351,13366,13374,13390,13397,13408,13433,13457,13481,13506,13513,13521,13544,13580,13595,13610,13617,13628,13636,13660,13684,13691,13714,13750,13765,13773,13788,13803,13818,13833,13848,13855,13874,13881,13889,13896,13903,13911,13919,13927,13935,13943,13951,13959,13967,13975,13982,13989,13996,14004,14012,14019,14026,14034,14042,14050,14058,14066,14074,14081,14088,14095,14103,14111,14118,14125,14133,14141,14149,14156,14163,14170,14177,14204,14212,14228,14263,14279,14286,14294,14310,14329,14357,14474,14481,14489,14505,14524,14539,14546,14554,14569,14588,14615,14698,14705,14713,14729,14749,14773,14780,14788,14804,14823,14838,14845,14853,14869,14888,14903,14910,14921,14928,15002,15009,15070,15077,15133,15177,15188,15195,15231,15260,15271,15278,15306,15346,15367,15410,15453,15460,15467,15474,15502,15558,15578,15621,15664,15671,15678,15685,15721,15753,15777,15813,15848,15855,15862,15869,15897,15925,15932,15947,15954,15973,15981,16022,16047,16054,16061,16101,16126,16134,16142,16183,16208,16245,16269,16277,16285,16326,16386,16394,16402,16451,16476,16501,16526,16534,16542,16591,16616,16641,16666,16674,16682,16731,16756,16781,16806,16814,16822,16870,16927,16935,16943,16991,17048,17056,17064,17112,17169,17177,17185,17225,17243,17264,17272,17280],{"type":25,"tag":109,"props":12689,"children":12690},{"class":111,"line":112},[12691,12695,12699],{"type":25,"tag":109,"props":12692,"children":12693},{"style":293},[12694],{"type":30,"value":418},{"type":25,"tag":109,"props":12696,"children":12697},{"style":302},[12698],{"type":30,"value":173},{"type":25,"tag":109,"props":12700,"children":12701},{"style":293},[12702],{"type":30,"value":427},{"type":25,"tag":109,"props":12704,"children":12705},{"class":111,"line":122},[12706,12710,12714,12718,12722,12726,12731,12735],{"type":25,"tag":109,"props":12707,"children":12708},{"style":293},[12709],{"type":30,"value":435},{"type":25,"tag":109,"props":12711,"children":12712},{"style":302},[12713],{"type":30,"value":440},{"type":25,"tag":109,"props":12715,"children":12716},{"style":443},[12717],{"type":30,"value":446},{"type":25,"tag":109,"props":12719,"children":12720},{"style":293},[12721],{"type":30,"value":451},{"type":25,"tag":109,"props":12723,"children":12724},{"style":318},[12725],{"type":30,"value":456},{"type":25,"tag":109,"props":12727,"children":12728},{"style":225},[12729],{"type":30,"value":12730},"steps-mdc my-6 p-4 bg-gradient-to-br from-gray-50 to-gray-100 dark:from-gray-900 dark:via-gray-900 dark:to-gray-800 rounded-lg border border-gray-200 dark:border-gray-700 relative overflow-hidden",{"type":25,"tag":109,"props":12732,"children":12733},{"style":318},[12734],{"type":30,"value":456},{"type":25,"tag":109,"props":12736,"children":12737},{"style":293},[12738],{"type":30,"value":427},{"type":25,"tag":109,"props":12740,"children":12741},{"class":111,"line":152},[12742],{"type":25,"tag":109,"props":12743,"children":12744},{"style":1194},[12745],{"type":30,"value":12746},"    \u003C!-- 装饰性光晕效果 -->\n",{"type":25,"tag":109,"props":12748,"children":12749},{"class":111,"line":509},[12750,12754,12758,12762,12766,12770,12775,12779,12783,12787],{"type":25,"tag":109,"props":12751,"children":12752},{"style":293},[12753],{"type":30,"value":477},{"type":25,"tag":109,"props":12755,"children":12756},{"style":302},[12757],{"type":30,"value":440},{"type":25,"tag":109,"props":12759,"children":12760},{"style":443},[12761],{"type":30,"value":446},{"type":25,"tag":109,"props":12763,"children":12764},{"style":293},[12765],{"type":30,"value":451},{"type":25,"tag":109,"props":12767,"children":12768},{"style":318},[12769],{"type":30,"value":456},{"type":25,"tag":109,"props":12771,"children":12772},{"style":225},[12773],{"type":30,"value":12774},"absolute inset-0 bg-gradient-to-br from-blue-50/70 via-transparent to-transparent dark:from-sky-500/15 dark:via-transparent dark:to-transparent pointer-events-none",{"type":25,"tag":109,"props":12776,"children":12777},{"style":318},[12778],{"type":30,"value":456},{"type":25,"tag":109,"props":12780,"children":12781},{"style":293},[12782],{"type":30,"value":7944},{"type":25,"tag":109,"props":12784,"children":12785},{"style":302},[12786],{"type":30,"value":440},{"type":25,"tag":109,"props":12788,"children":12789},{"style":293},[12790],{"type":30,"value":427},{"type":25,"tag":109,"props":12792,"children":12793},{"class":111,"line":569},[12794],{"type":25,"tag":109,"props":12795,"children":12796},{"style":116},[12797],{"type":30,"value":4670},{"type":25,"tag":109,"props":12799,"children":12800},{"class":111,"line":578},[12801],{"type":25,"tag":109,"props":12802,"children":12803},{"style":1194},[12804],{"type":30,"value":12805},"    \u003C!-- 内容区域 -->\n",{"type":25,"tag":109,"props":12807,"children":12808},{"class":111,"line":595},[12809,12813,12817,12821,12825,12829,12833,12837],{"type":25,"tag":109,"props":12810,"children":12811},{"style":293},[12812],{"type":30,"value":477},{"type":25,"tag":109,"props":12814,"children":12815},{"style":302},[12816],{"type":30,"value":440},{"type":25,"tag":109,"props":12818,"children":12819},{"style":443},[12820],{"type":30,"value":446},{"type":25,"tag":109,"props":12822,"children":12823},{"style":293},[12824],{"type":30,"value":451},{"type":25,"tag":109,"props":12826,"children":12827},{"style":318},[12828],{"type":30,"value":456},{"type":25,"tag":109,"props":12830,"children":12831},{"style":225},[12832],{"type":30,"value":8215},{"type":25,"tag":109,"props":12834,"children":12835},{"style":318},[12836],{"type":30,"value":456},{"type":25,"tag":109,"props":12838,"children":12839},{"style":293},[12840],{"type":30,"value":427},{"type":25,"tag":109,"props":12842,"children":12843},{"class":111,"line":605},[12844,12848],{"type":25,"tag":109,"props":12845,"children":12846},{"style":293},[12847],{"type":30,"value":515},{"type":25,"tag":109,"props":12849,"children":12850},{"style":302},[12851],{"type":30,"value":12852},"n-steps\n",{"type":25,"tag":109,"props":12854,"children":12855},{"class":111,"line":618},[12856,12861,12865,12869,12874],{"type":25,"tag":109,"props":12857,"children":12858},{"style":443},[12859],{"type":30,"value":12860},"        :current",{"type":25,"tag":109,"props":12862,"children":12863},{"style":293},[12864],{"type":30,"value":451},{"type":25,"tag":109,"props":12866,"children":12867},{"style":318},[12868],{"type":30,"value":456},{"type":25,"tag":109,"props":12870,"children":12871},{"style":225},[12872],{"type":30,"value":12873},"currentStep",{"type":25,"tag":109,"props":12875,"children":12876},{"style":318},[12877],{"type":30,"value":642},{"type":25,"tag":109,"props":12879,"children":12880},{"class":111,"line":645},[12881,12886,12890,12894,12898],{"type":25,"tag":109,"props":12882,"children":12883},{"style":443},[12884],{"type":30,"value":12885},"        :status",{"type":25,"tag":109,"props":12887,"children":12888},{"style":293},[12889],{"type":30,"value":451},{"type":25,"tag":109,"props":12891,"children":12892},{"style":318},[12893],{"type":30,"value":456},{"type":25,"tag":109,"props":12895,"children":12896},{"style":225},[12897],{"type":30,"value":11768},{"type":25,"tag":109,"props":12899,"children":12900},{"style":318},[12901],{"type":30,"value":642},{"type":25,"tag":109,"props":12903,"children":12904},{"class":111,"line":671},[12905,12910,12914,12918,12923],{"type":25,"tag":109,"props":12906,"children":12907},{"style":443},[12908],{"type":30,"value":12909},"        :vertical",{"type":25,"tag":109,"props":12911,"children":12912},{"style":293},[12913],{"type":30,"value":451},{"type":25,"tag":109,"props":12915,"children":12916},{"style":318},[12917],{"type":30,"value":456},{"type":25,"tag":109,"props":12919,"children":12920},{"style":225},[12921],{"type":30,"value":12922},"vertical",{"type":25,"tag":109,"props":12924,"children":12925},{"style":318},[12926],{"type":30,"value":642},{"type":25,"tag":109,"props":12928,"children":12929},{"class":111,"line":697},[12930,12934,12938,12942,12946],{"type":25,"tag":109,"props":12931,"children":12932},{"style":443},[12933],{"type":30,"value":677},{"type":25,"tag":109,"props":12935,"children":12936},{"style":293},[12937],{"type":30,"value":451},{"type":25,"tag":109,"props":12939,"children":12940},{"style":318},[12941],{"type":30,"value":456},{"type":25,"tag":109,"props":12943,"children":12944},{"style":225},[12945],{"type":30,"value":2680},{"type":25,"tag":109,"props":12947,"children":12948},{"style":318},[12949],{"type":30,"value":642},{"type":25,"tag":109,"props":12951,"children":12952},{"class":111,"line":723},[12953,12958,12962,12966,12971],{"type":25,"tag":109,"props":12954,"children":12955},{"style":443},[12956],{"type":30,"value":12957},"        @update:current",{"type":25,"tag":109,"props":12959,"children":12960},{"style":293},[12961],{"type":30,"value":451},{"type":25,"tag":109,"props":12963,"children":12964},{"style":318},[12965],{"type":30,"value":456},{"type":25,"tag":109,"props":12967,"children":12968},{"style":225},[12969],{"type":30,"value":12970},"onStepChange",{"type":25,"tag":109,"props":12972,"children":12973},{"style":318},[12974],{"type":30,"value":642},{"type":25,"tag":109,"props":12976,"children":12977},{"class":111,"line":749},[12978],{"type":25,"tag":109,"props":12979,"children":12980},{"style":293},[12981],{"type":30,"value":12982},"      >\n",{"type":25,"tag":109,"props":12984,"children":12985},{"class":111,"line":775},[12986,12990],{"type":25,"tag":109,"props":12987,"children":12988},{"style":293},[12989],{"type":30,"value":4450},{"type":25,"tag":109,"props":12991,"children":12992},{"style":302},[12993],{"type":30,"value":12994},"n-step\n",{"type":25,"tag":109,"props":12996,"children":12997},{"class":111,"line":801},[12998,13003,13007,13011,13016],{"type":25,"tag":109,"props":12999,"children":13000},{"style":443},[13001],{"type":30,"value":13002},"          v-for",{"type":25,"tag":109,"props":13004,"children":13005},{"style":293},[13006],{"type":30,"value":451},{"type":25,"tag":109,"props":13008,"children":13009},{"style":318},[13010],{"type":30,"value":456},{"type":25,"tag":109,"props":13012,"children":13013},{"style":225},[13014],{"type":30,"value":13015},"(step, index) in stepsList",{"type":25,"tag":109,"props":13017,"children":13018},{"style":318},[13019],{"type":30,"value":642},{"type":25,"tag":109,"props":13021,"children":13022},{"class":111,"line":827},[13023,13028,13032,13036,13041],{"type":25,"tag":109,"props":13024,"children":13025},{"style":443},[13026],{"type":30,"value":13027},"          :key",{"type":25,"tag":109,"props":13029,"children":13030},{"style":293},[13031],{"type":30,"value":451},{"type":25,"tag":109,"props":13033,"children":13034},{"style":318},[13035],{"type":30,"value":456},{"type":25,"tag":109,"props":13037,"children":13038},{"style":225},[13039],{"type":30,"value":13040},"index",{"type":25,"tag":109,"props":13042,"children":13043},{"style":318},[13044],{"type":30,"value":642},{"type":25,"tag":109,"props":13046,"children":13047},{"class":111,"line":836},[13048,13053,13057,13061,13066],{"type":25,"tag":109,"props":13049,"children":13050},{"style":443},[13051],{"type":30,"value":13052},"          :title",{"type":25,"tag":109,"props":13054,"children":13055},{"style":293},[13056],{"type":30,"value":451},{"type":25,"tag":109,"props":13058,"children":13059},{"style":318},[13060],{"type":30,"value":456},{"type":25,"tag":109,"props":13062,"children":13063},{"style":225},[13064],{"type":30,"value":13065},"step.title",{"type":25,"tag":109,"props":13067,"children":13068},{"style":318},[13069],{"type":30,"value":642},{"type":25,"tag":109,"props":13071,"children":13072},{"class":111,"line":853},[13073,13078,13082,13086,13091],{"type":25,"tag":109,"props":13074,"children":13075},{"style":443},[13076],{"type":30,"value":13077},"          :description",{"type":25,"tag":109,"props":13079,"children":13080},{"style":293},[13081],{"type":30,"value":451},{"type":25,"tag":109,"props":13083,"children":13084},{"style":318},[13085],{"type":30,"value":456},{"type":25,"tag":109,"props":13087,"children":13088},{"style":225},[13089],{"type":30,"value":13090},"step.description",{"type":25,"tag":109,"props":13092,"children":13093},{"style":318},[13094],{"type":30,"value":642},{"type":25,"tag":109,"props":13096,"children":13097},{"class":111,"line":870},[13098],{"type":25,"tag":109,"props":13099,"children":13100},{"style":293},[13101],{"type":30,"value":13102},"        />\n",{"type":25,"tag":109,"props":13104,"children":13105},{"class":111,"line":887},[13106,13110,13115],{"type":25,"tag":109,"props":13107,"children":13108},{"style":293},[13109],{"type":30,"value":584},{"type":25,"tag":109,"props":13111,"children":13112},{"style":302},[13113],{"type":30,"value":13114},"n-steps",{"type":25,"tag":109,"props":13116,"children":13117},{"style":293},[13118],{"type":30,"value":427},{"type":25,"tag":109,"props":13120,"children":13121},{"class":111,"line":895},[13122],{"type":25,"tag":109,"props":13123,"children":13124},{"style":116},[13125],{"type":30,"value":4148},{"type":25,"tag":109,"props":13127,"children":13128},{"class":111,"line":917},[13129],{"type":25,"tag":109,"props":13130,"children":13131},{"style":1194},[13132],{"type":30,"value":13133},"      \u003C!-- 控制按钮（可选） -->\n",{"type":25,"tag":109,"props":13135,"children":13136},{"class":111,"line":925},[13137,13141,13145,13149,13153,13157,13162,13166,13170,13174,13178,13183,13187,13192,13196,13200,13205,13209],{"type":25,"tag":109,"props":13138,"children":13139},{"style":293},[13140],{"type":30,"value":515},{"type":25,"tag":109,"props":13142,"children":13143},{"style":302},[13144],{"type":30,"value":440},{"type":25,"tag":109,"props":13146,"children":13147},{"style":443},[13148],{"type":30,"value":524},{"type":25,"tag":109,"props":13150,"children":13151},{"style":293},[13152],{"type":30,"value":451},{"type":25,"tag":109,"props":13154,"children":13155},{"style":318},[13156],{"type":30,"value":456},{"type":25,"tag":109,"props":13158,"children":13159},{"style":225},[13160],{"type":30,"value":13161},"showControls",{"type":25,"tag":109,"props":13163,"children":13164},{"style":318},[13165],{"type":30,"value":456},{"type":25,"tag":109,"props":13167,"children":13168},{"style":443},[13169],{"type":30,"value":446},{"type":25,"tag":109,"props":13171,"children":13172},{"style":293},[13173],{"type":30,"value":451},{"type":25,"tag":109,"props":13175,"children":13176},{"style":318},[13177],{"type":30,"value":456},{"type":25,"tag":109,"props":13179,"children":13180},{"style":225},[13181],{"type":30,"value":13182},"steps-controls flex justify-end gap-3 mt-6 pt-4 border-t border-gray-200 dark:border-gray-700",{"type":25,"tag":109,"props":13184,"children":13185},{"style":318},[13186],{"type":30,"value":456},{"type":25,"tag":109,"props":13188,"children":13189},{"style":443},[13190],{"type":30,"value":13191}," :class",{"type":25,"tag":109,"props":13193,"children":13194},{"style":293},[13195],{"type":30,"value":451},{"type":25,"tag":109,"props":13197,"children":13198},{"style":318},[13199],{"type":30,"value":456},{"type":25,"tag":109,"props":13201,"children":13202},{"style":225},[13203],{"type":30,"value":13204},"{ 'justify-center': vertical }",{"type":25,"tag":109,"props":13206,"children":13207},{"style":318},[13208],{"type":30,"value":456},{"type":25,"tag":109,"props":13210,"children":13211},{"style":293},[13212],{"type":30,"value":427},{"type":25,"tag":109,"props":13214,"children":13215},{"class":111,"line":960},[13216,13220],{"type":25,"tag":109,"props":13217,"children":13218},{"style":293},[13219],{"type":30,"value":4450},{"type":25,"tag":109,"props":13221,"children":13222},{"style":302},[13223],{"type":30,"value":13224},"n-button\n",{"type":25,"tag":109,"props":13226,"children":13227},{"class":111,"line":978},[13228,13233,13237,13241,13246],{"type":25,"tag":109,"props":13229,"children":13230},{"style":443},[13231],{"type":30,"value":13232},"          :disabled",{"type":25,"tag":109,"props":13234,"children":13235},{"style":293},[13236],{"type":30,"value":451},{"type":25,"tag":109,"props":13238,"children":13239},{"style":318},[13240],{"type":30,"value":456},{"type":25,"tag":109,"props":13242,"children":13243},{"style":225},[13244],{"type":30,"value":13245},"currentStep \u003C= 1",{"type":25,"tag":109,"props":13247,"children":13248},{"style":318},[13249],{"type":30,"value":642},{"type":25,"tag":109,"props":13251,"children":13252},{"class":111,"line":1021},[13253,13258,13262,13266,13271],{"type":25,"tag":109,"props":13254,"children":13255},{"style":443},[13256],{"type":30,"value":13257},"          @click",{"type":25,"tag":109,"props":13259,"children":13260},{"style":293},[13261],{"type":30,"value":451},{"type":25,"tag":109,"props":13263,"children":13264},{"style":318},[13265],{"type":30,"value":456},{"type":25,"tag":109,"props":13267,"children":13268},{"style":225},[13269],{"type":30,"value":13270},"prevStep",{"type":25,"tag":109,"props":13272,"children":13273},{"style":318},[13274],{"type":30,"value":642},{"type":25,"tag":109,"props":13276,"children":13277},{"class":111,"line":1040},[13278],{"type":25,"tag":109,"props":13279,"children":13280},{"style":443},[13281],{"type":30,"value":13282},"          secondary\n",{"type":25,"tag":109,"props":13284,"children":13285},{"class":111,"line":1049},[13286],{"type":25,"tag":109,"props":13287,"children":13288},{"style":293},[13289],{"type":30,"value":13290},"        >\n",{"type":25,"tag":109,"props":13292,"children":13293},{"class":111,"line":1066},[13294,13298,13302,13306,13311],{"type":25,"tag":109,"props":13295,"children":13296},{"style":293},[13297],{"type":30,"value":4487},{"type":25,"tag":109,"props":13299,"children":13300},{"style":302},[13301],{"type":30,"value":173},{"type":25,"tag":109,"props":13303,"children":13304},{"style":293},[13305],{"type":30,"value":7658},{"type":25,"tag":109,"props":13307,"children":13308},{"style":443},[13309],{"type":30,"value":13310},"icon",{"type":25,"tag":109,"props":13312,"children":13313},{"style":293},[13314],{"type":30,"value":427},{"type":25,"tag":109,"props":13316,"children":13317},{"class":111,"line":1102},[13318,13322,13326,13330,13334,13338,13343,13347],{"type":25,"tag":109,"props":13319,"children":13320},{"style":293},[13321],{"type":30,"value":8378},{"type":25,"tag":109,"props":13323,"children":13324},{"style":302},[13325],{"type":30,"value":4492},{"type":25,"tag":109,"props":13327,"children":13328},{"style":443},[13329],{"type":30,"value":4497},{"type":25,"tag":109,"props":13331,"children":13332},{"style":293},[13333],{"type":30,"value":451},{"type":25,"tag":109,"props":13335,"children":13336},{"style":318},[13337],{"type":30,"value":456},{"type":25,"tag":109,"props":13339,"children":13340},{"style":225},[13341],{"type":30,"value":13342},"mdi:chevron-left",{"type":25,"tag":109,"props":13344,"children":13345},{"style":318},[13346],{"type":30,"value":456},{"type":25,"tag":109,"props":13348,"children":13349},{"style":293},[13350],{"type":30,"value":4562},{"type":25,"tag":109,"props":13352,"children":13353},{"class":111,"line":1119},[13354,13358,13362],{"type":25,"tag":109,"props":13355,"children":13356},{"style":293},[13357],{"type":30,"value":8444},{"type":25,"tag":109,"props":13359,"children":13360},{"style":302},[13361],{"type":30,"value":173},{"type":25,"tag":109,"props":13363,"children":13364},{"style":293},[13365],{"type":30,"value":427},{"type":25,"tag":109,"props":13367,"children":13368},{"class":111,"line":1127},[13369],{"type":25,"tag":109,"props":13370,"children":13371},{"style":116},[13372],{"type":30,"value":13373},"          上一步\n",{"type":25,"tag":109,"props":13375,"children":13376},{"class":111,"line":1144},[13377,13381,13386],{"type":25,"tag":109,"props":13378,"children":13379},{"style":293},[13380],{"type":30,"value":4624},{"type":25,"tag":109,"props":13382,"children":13383},{"style":302},[13384],{"type":30,"value":13385},"n-button",{"type":25,"tag":109,"props":13387,"children":13388},{"style":293},[13389],{"type":30,"value":427},{"type":25,"tag":109,"props":13391,"children":13392},{"class":111,"line":1164},[13393],{"type":25,"tag":109,"props":13394,"children":13395},{"style":116},[13396],{"type":30,"value":8555},{"type":25,"tag":109,"props":13398,"children":13399},{"class":111,"line":1200},[13400,13404],{"type":25,"tag":109,"props":13401,"children":13402},{"style":293},[13403],{"type":30,"value":4450},{"type":25,"tag":109,"props":13405,"children":13406},{"style":302},[13407],{"type":30,"value":13224},{"type":25,"tag":109,"props":13409,"children":13410},{"class":111,"line":1310},[13411,13416,13420,13424,13429],{"type":25,"tag":109,"props":13412,"children":13413},{"style":443},[13414],{"type":30,"value":13415},"          v-if",{"type":25,"tag":109,"props":13417,"children":13418},{"style":293},[13419],{"type":30,"value":451},{"type":25,"tag":109,"props":13421,"children":13422},{"style":318},[13423],{"type":30,"value":456},{"type":25,"tag":109,"props":13425,"children":13426},{"style":225},[13427],{"type":30,"value":13428},"currentStep \u003C stepsList.length",{"type":25,"tag":109,"props":13430,"children":13431},{"style":318},[13432],{"type":30,"value":642},{"type":25,"tag":109,"props":13434,"children":13435},{"class":111,"line":1318},[13436,13440,13444,13448,13453],{"type":25,"tag":109,"props":13437,"children":13438},{"style":443},[13439],{"type":30,"value":13232},{"type":25,"tag":109,"props":13441,"children":13442},{"style":293},[13443],{"type":30,"value":451},{"type":25,"tag":109,"props":13445,"children":13446},{"style":318},[13447],{"type":30,"value":456},{"type":25,"tag":109,"props":13449,"children":13450},{"style":225},[13451],{"type":30,"value":13452},"currentStep >= stepsList.length",{"type":25,"tag":109,"props":13454,"children":13455},{"style":318},[13456],{"type":30,"value":642},{"type":25,"tag":109,"props":13458,"children":13459},{"class":111,"line":1335},[13460,13464,13468,13472,13477],{"type":25,"tag":109,"props":13461,"children":13462},{"style":443},[13463],{"type":30,"value":13257},{"type":25,"tag":109,"props":13465,"children":13466},{"style":293},[13467],{"type":30,"value":451},{"type":25,"tag":109,"props":13469,"children":13470},{"style":318},[13471],{"type":30,"value":456},{"type":25,"tag":109,"props":13473,"children":13474},{"style":225},[13475],{"type":30,"value":13476},"nextStep",{"type":25,"tag":109,"props":13478,"children":13479},{"style":318},[13480],{"type":30,"value":642},{"type":25,"tag":109,"props":13482,"children":13483},{"class":111,"line":1356},[13484,13489,13493,13497,13502],{"type":25,"tag":109,"props":13485,"children":13486},{"style":443},[13487],{"type":30,"value":13488},"          type",{"type":25,"tag":109,"props":13490,"children":13491},{"style":293},[13492],{"type":30,"value":451},{"type":25,"tag":109,"props":13494,"children":13495},{"style":318},[13496],{"type":30,"value":456},{"type":25,"tag":109,"props":13498,"children":13499},{"style":225},[13500],{"type":30,"value":13501},"primary",{"type":25,"tag":109,"props":13503,"children":13504},{"style":318},[13505],{"type":30,"value":642},{"type":25,"tag":109,"props":13507,"children":13508},{"class":111,"line":1374},[13509],{"type":25,"tag":109,"props":13510,"children":13511},{"style":293},[13512],{"type":30,"value":13290},{"type":25,"tag":109,"props":13514,"children":13515},{"class":111,"line":1382},[13516],{"type":25,"tag":109,"props":13517,"children":13518},{"style":116},[13519],{"type":30,"value":13520},"          下一步\n",{"type":25,"tag":109,"props":13522,"children":13523},{"class":111,"line":1399},[13524,13528,13532,13536,13540],{"type":25,"tag":109,"props":13525,"children":13526},{"style":293},[13527],{"type":30,"value":4487},{"type":25,"tag":109,"props":13529,"children":13530},{"style":302},[13531],{"type":30,"value":173},{"type":25,"tag":109,"props":13533,"children":13534},{"style":293},[13535],{"type":30,"value":7658},{"type":25,"tag":109,"props":13537,"children":13538},{"style":443},[13539],{"type":30,"value":13310},{"type":25,"tag":109,"props":13541,"children":13542},{"style":293},[13543],{"type":30,"value":427},{"type":25,"tag":109,"props":13545,"children":13546},{"class":111,"line":1419},[13547,13551,13555,13559,13563,13567,13572,13576],{"type":25,"tag":109,"props":13548,"children":13549},{"style":293},[13550],{"type":30,"value":8378},{"type":25,"tag":109,"props":13552,"children":13553},{"style":302},[13554],{"type":30,"value":4492},{"type":25,"tag":109,"props":13556,"children":13557},{"style":443},[13558],{"type":30,"value":4497},{"type":25,"tag":109,"props":13560,"children":13561},{"style":293},[13562],{"type":30,"value":451},{"type":25,"tag":109,"props":13564,"children":13565},{"style":318},[13566],{"type":30,"value":456},{"type":25,"tag":109,"props":13568,"children":13569},{"style":225},[13570],{"type":30,"value":13571},"mdi:chevron-right",{"type":25,"tag":109,"props":13573,"children":13574},{"style":318},[13575],{"type":30,"value":456},{"type":25,"tag":109,"props":13577,"children":13578},{"style":293},[13579],{"type":30,"value":4562},{"type":25,"tag":109,"props":13581,"children":13582},{"class":111,"line":1435},[13583,13587,13591],{"type":25,"tag":109,"props":13584,"children":13585},{"style":293},[13586],{"type":30,"value":8444},{"type":25,"tag":109,"props":13588,"children":13589},{"style":302},[13590],{"type":30,"value":173},{"type":25,"tag":109,"props":13592,"children":13593},{"style":293},[13594],{"type":30,"value":427},{"type":25,"tag":109,"props":13596,"children":13597},{"class":111,"line":1443},[13598,13602,13606],{"type":25,"tag":109,"props":13599,"children":13600},{"style":293},[13601],{"type":30,"value":4624},{"type":25,"tag":109,"props":13603,"children":13604},{"style":302},[13605],{"type":30,"value":13385},{"type":25,"tag":109,"props":13607,"children":13608},{"style":293},[13609],{"type":30,"value":427},{"type":25,"tag":109,"props":13611,"children":13612},{"class":111,"line":1460},[13613],{"type":25,"tag":109,"props":13614,"children":13615},{"style":116},[13616],{"type":30,"value":8555},{"type":25,"tag":109,"props":13618,"children":13619},{"class":111,"line":1480},[13620,13624],{"type":25,"tag":109,"props":13621,"children":13622},{"style":293},[13623],{"type":30,"value":4450},{"type":25,"tag":109,"props":13625,"children":13626},{"style":302},[13627],{"type":30,"value":13224},{"type":25,"tag":109,"props":13629,"children":13630},{"class":111,"line":1497},[13631],{"type":25,"tag":109,"props":13632,"children":13633},{"style":443},[13634],{"type":30,"value":13635},"          v-else\n",{"type":25,"tag":109,"props":13637,"children":13638},{"class":111,"line":1506},[13639,13643,13647,13651,13656],{"type":25,"tag":109,"props":13640,"children":13641},{"style":443},[13642],{"type":30,"value":13488},{"type":25,"tag":109,"props":13644,"children":13645},{"style":293},[13646],{"type":30,"value":451},{"type":25,"tag":109,"props":13648,"children":13649},{"style":318},[13650],{"type":30,"value":456},{"type":25,"tag":109,"props":13652,"children":13653},{"style":225},[13654],{"type":30,"value":13655},"success",{"type":25,"tag":109,"props":13657,"children":13658},{"style":318},[13659],{"type":30,"value":642},{"type":25,"tag":109,"props":13661,"children":13662},{"class":111,"line":1518},[13663,13667,13671,13675,13680],{"type":25,"tag":109,"props":13664,"children":13665},{"style":443},[13666],{"type":30,"value":13257},{"type":25,"tag":109,"props":13668,"children":13669},{"style":293},[13670],{"type":30,"value":451},{"type":25,"tag":109,"props":13672,"children":13673},{"style":318},[13674],{"type":30,"value":456},{"type":25,"tag":109,"props":13676,"children":13677},{"style":225},[13678],{"type":30,"value":13679},"onComplete",{"type":25,"tag":109,"props":13681,"children":13682},{"style":318},[13683],{"type":30,"value":642},{"type":25,"tag":109,"props":13685,"children":13686},{"class":111,"line":1526},[13687],{"type":25,"tag":109,"props":13688,"children":13689},{"style":293},[13690],{"type":30,"value":13290},{"type":25,"tag":109,"props":13692,"children":13693},{"class":111,"line":1571},[13694,13698,13702,13706,13710],{"type":25,"tag":109,"props":13695,"children":13696},{"style":293},[13697],{"type":30,"value":4487},{"type":25,"tag":109,"props":13699,"children":13700},{"style":302},[13701],{"type":30,"value":173},{"type":25,"tag":109,"props":13703,"children":13704},{"style":293},[13705],{"type":30,"value":7658},{"type":25,"tag":109,"props":13707,"children":13708},{"style":443},[13709],{"type":30,"value":13310},{"type":25,"tag":109,"props":13711,"children":13712},{"style":293},[13713],{"type":30,"value":427},{"type":25,"tag":109,"props":13715,"children":13716},{"class":111,"line":1579},[13717,13721,13725,13729,13733,13737,13742,13746],{"type":25,"tag":109,"props":13718,"children":13719},{"style":293},[13720],{"type":30,"value":8378},{"type":25,"tag":109,"props":13722,"children":13723},{"style":302},[13724],{"type":30,"value":4492},{"type":25,"tag":109,"props":13726,"children":13727},{"style":443},[13728],{"type":30,"value":4497},{"type":25,"tag":109,"props":13730,"children":13731},{"style":293},[13732],{"type":30,"value":451},{"type":25,"tag":109,"props":13734,"children":13735},{"style":318},[13736],{"type":30,"value":456},{"type":25,"tag":109,"props":13738,"children":13739},{"style":225},[13740],{"type":30,"value":13741},"mdi:check",{"type":25,"tag":109,"props":13743,"children":13744},{"style":318},[13745],{"type":30,"value":456},{"type":25,"tag":109,"props":13747,"children":13748},{"style":293},[13749],{"type":30,"value":4562},{"type":25,"tag":109,"props":13751,"children":13752},{"class":111,"line":1627},[13753,13757,13761],{"type":25,"tag":109,"props":13754,"children":13755},{"style":293},[13756],{"type":30,"value":8444},{"type":25,"tag":109,"props":13758,"children":13759},{"style":302},[13760],{"type":30,"value":173},{"type":25,"tag":109,"props":13762,"children":13763},{"style":293},[13764],{"type":30,"value":427},{"type":25,"tag":109,"props":13766,"children":13767},{"class":111,"line":1663},[13768],{"type":25,"tag":109,"props":13769,"children":13770},{"style":116},[13771],{"type":30,"value":13772},"          完成\n",{"type":25,"tag":109,"props":13774,"children":13775},{"class":111,"line":1697},[13776,13780,13784],{"type":25,"tag":109,"props":13777,"children":13778},{"style":293},[13779],{"type":30,"value":4624},{"type":25,"tag":109,"props":13781,"children":13782},{"style":302},[13783],{"type":30,"value":13385},{"type":25,"tag":109,"props":13785,"children":13786},{"style":293},[13787],{"type":30,"value":427},{"type":25,"tag":109,"props":13789,"children":13790},{"class":111,"line":1705},[13791,13795,13799],{"type":25,"tag":109,"props":13792,"children":13793},{"style":293},[13794],{"type":30,"value":584},{"type":25,"tag":109,"props":13796,"children":13797},{"style":302},[13798],{"type":30,"value":440},{"type":25,"tag":109,"props":13800,"children":13801},{"style":293},[13802],{"type":30,"value":427},{"type":25,"tag":109,"props":13804,"children":13805},{"class":111,"line":1754},[13806,13810,13814],{"type":25,"tag":109,"props":13807,"children":13808},{"style":293},[13809],{"type":30,"value":842},{"type":25,"tag":109,"props":13811,"children":13812},{"style":302},[13813],{"type":30,"value":440},{"type":25,"tag":109,"props":13815,"children":13816},{"style":293},[13817],{"type":30,"value":427},{"type":25,"tag":109,"props":13819,"children":13820},{"class":111,"line":1818},[13821,13825,13829],{"type":25,"tag":109,"props":13822,"children":13823},{"style":293},[13824],{"type":30,"value":859},{"type":25,"tag":109,"props":13826,"children":13827},{"style":302},[13828],{"type":30,"value":440},{"type":25,"tag":109,"props":13830,"children":13831},{"style":293},[13832],{"type":30,"value":427},{"type":25,"tag":109,"props":13834,"children":13835},{"class":111,"line":1896},[13836,13840,13844],{"type":25,"tag":109,"props":13837,"children":13838},{"style":293},[13839],{"type":30,"value":876},{"type":25,"tag":109,"props":13841,"children":13842},{"style":302},[13843],{"type":30,"value":173},{"type":25,"tag":109,"props":13845,"children":13846},{"style":293},[13847],{"type":30,"value":427},{"type":25,"tag":109,"props":13849,"children":13850},{"class":111,"line":1951},[13851],{"type":25,"tag":109,"props":13852,"children":13853},{"emptyLinePlaceholder":599},[13854],{"type":30,"value":602},{"type":25,"tag":109,"props":13856,"children":13857},{"class":111,"line":1960},[13858,13862,13866,13870],{"type":25,"tag":109,"props":13859,"children":13860},{"style":293},[13861],{"type":30,"value":418},{"type":25,"tag":109,"props":13863,"children":13864},{"style":302},[13865],{"type":30,"value":905},{"type":25,"tag":109,"props":13867,"children":13868},{"style":443},[13869],{"type":30,"value":910},{"type":25,"tag":109,"props":13871,"children":13872},{"style":293},[13873],{"type":30,"value":427},{"type":25,"tag":109,"props":13875,"children":13876},{"class":111,"line":1968},[13877],{"type":25,"tag":109,"props":13878,"children":13879},{"style":1194},[13880],{"type":30,"value":4814},{"type":25,"tag":109,"props":13882,"children":13883},{"class":111,"line":2036},[13884],{"type":25,"tag":109,"props":13885,"children":13886},{"style":1194},[13887],{"type":30,"value":13888}," * Steps 步骤条组件 - MDC 语法\n",{"type":25,"tag":109,"props":13890,"children":13891},{"class":111,"line":2044},[13892],{"type":25,"tag":109,"props":13893,"children":13894},{"style":1194},[13895],{"type":30,"value":4830},{"type":25,"tag":109,"props":13897,"children":13898},{"class":111,"line":2058},[13899],{"type":25,"tag":109,"props":13900,"children":13901},{"style":1194},[13902],{"type":30,"value":4853},{"type":25,"tag":109,"props":13904,"children":13905},{"class":111,"line":2111},[13906],{"type":25,"tag":109,"props":13907,"children":13908},{"style":1194},[13909],{"type":30,"value":13910}," * ::steps{current=\"2\" status=\"process\"}\n",{"type":25,"tag":109,"props":13912,"children":13913},{"class":111,"line":2145},[13914],{"type":25,"tag":109,"props":13915,"children":13916},{"style":1194},[13917],{"type":30,"value":13918}," * ---\n",{"type":25,"tag":109,"props":13920,"children":13921},{"class":111,"line":2190},[13922],{"type":25,"tag":109,"props":13923,"children":13924},{"style":1194},[13925],{"type":30,"value":13926}," * steps:\n",{"type":25,"tag":109,"props":13928,"children":13929},{"class":111,"line":2198},[13930],{"type":25,"tag":109,"props":13931,"children":13932},{"style":1194},[13933],{"type":30,"value":13934}," *   - title: \"第一步\"\n",{"type":25,"tag":109,"props":13936,"children":13937},{"class":111,"line":2206},[13938],{"type":25,"tag":109,"props":13939,"children":13940},{"style":1194},[13941],{"type":30,"value":13942}," *     description: \"注册账号\"\n",{"type":25,"tag":109,"props":13944,"children":13945},{"class":111,"line":2214},[13946],{"type":25,"tag":109,"props":13947,"children":13948},{"style":1194},[13949],{"type":30,"value":13950}," *   - title: \"第二步\"\n",{"type":25,"tag":109,"props":13952,"children":13953},{"class":111,"line":2290},[13954],{"type":25,"tag":109,"props":13955,"children":13956},{"style":1194},[13957],{"type":30,"value":13958}," *     description: \"完善信息\"\n",{"type":25,"tag":109,"props":13960,"children":13961},{"class":111,"line":2298},[13962],{"type":25,"tag":109,"props":13963,"children":13964},{"style":1194},[13965],{"type":30,"value":13966}," *   - title: \"第三步\"\n",{"type":25,"tag":109,"props":13968,"children":13969},{"class":111,"line":2335},[13970],{"type":25,"tag":109,"props":13971,"children":13972},{"style":1194},[13973],{"type":30,"value":13974}," *     description: \"开始使用\"\n",{"type":25,"tag":109,"props":13976,"children":13977},{"class":111,"line":2384},[13978],{"type":25,"tag":109,"props":13979,"children":13980},{"style":1194},[13981],{"type":30,"value":13918},{"type":25,"tag":109,"props":13983,"children":13984},{"class":111,"line":2410},[13985],{"type":25,"tag":109,"props":13986,"children":13987},{"style":1194},[13988],{"type":30,"value":4869},{"type":25,"tag":109,"props":13990,"children":13991},{"class":111,"line":2418},[13992],{"type":25,"tag":109,"props":13993,"children":13994},{"style":1194},[13995],{"type":30,"value":4830},{"type":25,"tag":109,"props":13997,"children":13998},{"class":111,"line":2455},[13999],{"type":25,"tag":109,"props":14000,"children":14001},{"style":1194},[14002],{"type":30,"value":14003}," * 垂直布局带控制按钮：\n",{"type":25,"tag":109,"props":14005,"children":14006},{"class":111,"line":2492},[14007],{"type":25,"tag":109,"props":14008,"children":14009},{"style":1194},[14010],{"type":30,"value":14011}," * ::steps{current=\"1\" vertical showControls}\n",{"type":25,"tag":109,"props":14013,"children":14014},{"class":111,"line":2500},[14015],{"type":25,"tag":109,"props":14016,"children":14017},{"style":1194},[14018],{"type":30,"value":13918},{"type":25,"tag":109,"props":14020,"children":14021},{"class":111,"line":2508},[14022],{"type":25,"tag":109,"props":14023,"children":14024},{"style":1194},[14025],{"type":30,"value":13926},{"type":25,"tag":109,"props":14027,"children":14028},{"class":111,"line":2516},[14029],{"type":25,"tag":109,"props":14030,"children":14031},{"style":1194},[14032],{"type":30,"value":14033}," *   - title: \"安装依赖\"\n",{"type":25,"tag":109,"props":14035,"children":14036},{"class":111,"line":2525},[14037],{"type":25,"tag":109,"props":14038,"children":14039},{"style":1194},[14040],{"type":30,"value":14041}," *     description: \"npm install\"\n",{"type":25,"tag":109,"props":14043,"children":14044},{"class":111,"line":2562},[14045],{"type":25,"tag":109,"props":14046,"children":14047},{"style":1194},[14048],{"type":30,"value":14049}," *   - title: \"配置文件\"\n",{"type":25,"tag":109,"props":14051,"children":14052},{"class":111,"line":2583},[14053],{"type":25,"tag":109,"props":14054,"children":14055},{"style":1194},[14056],{"type":30,"value":14057}," *     description: \"修改 config.js\"\n",{"type":25,"tag":109,"props":14059,"children":14060},{"class":111,"line":2605},[14061],{"type":25,"tag":109,"props":14062,"children":14063},{"style":1194},[14064],{"type":30,"value":14065}," *   - title: \"运行项目\"\n",{"type":25,"tag":109,"props":14067,"children":14068},{"class":111,"line":2627},[14069],{"type":25,"tag":109,"props":14070,"children":14071},{"style":1194},[14072],{"type":30,"value":14073}," *     description: \"npm run dev\"\n",{"type":25,"tag":109,"props":14075,"children":14076},{"class":111,"line":2645},[14077],{"type":25,"tag":109,"props":14078,"children":14079},{"style":1194},[14080],{"type":30,"value":13918},{"type":25,"tag":109,"props":14082,"children":14083},{"class":111,"line":2653},[14084],{"type":25,"tag":109,"props":14085,"children":14086},{"style":1194},[14087],{"type":30,"value":4869},{"type":25,"tag":109,"props":14089,"children":14090},{"class":111,"line":2698},[14091],{"type":25,"tag":109,"props":14092,"children":14093},{"style":1194},[14094],{"type":30,"value":4830},{"type":25,"tag":109,"props":14096,"children":14097},{"class":111,"line":2710},[14098],{"type":25,"tag":109,"props":14099,"children":14100},{"style":1194},[14101],{"type":30,"value":14102}," * 可点击步骤：\n",{"type":25,"tag":109,"props":14104,"children":14105},{"class":111,"line":2726},[14106],{"type":25,"tag":109,"props":14107,"children":14108},{"style":1194},[14109],{"type":30,"value":14110}," * ::steps{current=\"2\" clickable showControls}\n",{"type":25,"tag":109,"props":14112,"children":14113},{"class":111,"line":2734},[14114],{"type":25,"tag":109,"props":14115,"children":14116},{"style":1194},[14117],{"type":30,"value":13918},{"type":25,"tag":109,"props":14119,"children":14120},{"class":111,"line":4},[14121],{"type":25,"tag":109,"props":14122,"children":14123},{"style":1194},[14124],{"type":30,"value":13926},{"type":25,"tag":109,"props":14126,"children":14127},{"class":111,"line":2774},[14128],{"type":25,"tag":109,"props":14129,"children":14130},{"style":1194},[14131],{"type":30,"value":14132}," *   - title: \"选择模板\"\n",{"type":25,"tag":109,"props":14134,"children":14135},{"class":111,"line":2799},[14136],{"type":25,"tag":109,"props":14137,"children":14138},{"style":1194},[14139],{"type":30,"value":14140}," *   - title: \"填写信息\"\n",{"type":25,"tag":109,"props":14142,"children":14143},{"class":111,"line":2807},[14144],{"type":25,"tag":109,"props":14145,"children":14146},{"style":1194},[14147],{"type":30,"value":14148}," *   - title: \"确认提交\"\n",{"type":25,"tag":109,"props":14150,"children":14151},{"class":111,"line":2815},[14152],{"type":25,"tag":109,"props":14153,"children":14154},{"style":1194},[14155],{"type":30,"value":13918},{"type":25,"tag":109,"props":14157,"children":14158},{"class":111,"line":2831},[14159],{"type":25,"tag":109,"props":14160,"children":14161},{"style":1194},[14162],{"type":30,"value":4869},{"type":25,"tag":109,"props":14164,"children":14165},{"class":111,"line":2852},[14166],{"type":25,"tag":109,"props":14167,"children":14168},{"style":1194},[14169],{"type":30,"value":4921},{"type":25,"tag":109,"props":14171,"children":14172},{"class":111,"line":2874},[14173],{"type":25,"tag":109,"props":14174,"children":14175},{"emptyLinePlaceholder":599},[14176],{"type":30,"value":602},{"type":25,"tag":109,"props":14178,"children":14179},{"class":111,"line":2902},[14180,14184,14188,14192,14196,14200],{"type":25,"tag":109,"props":14181,"children":14182},{"style":929},[14183],{"type":30,"value":932},{"type":25,"tag":109,"props":14185,"children":14186},{"style":935},[14187],{"type":30,"value":938},{"type":25,"tag":109,"props":14189,"children":14190},{"style":941},[14191],{"type":30,"value":944},{"type":25,"tag":109,"props":14193,"children":14194},{"style":282},[14195],{"type":30,"value":949},{"type":25,"tag":109,"props":14197,"children":14198},{"style":116},[14199],{"type":30,"value":290},{"type":25,"tag":109,"props":14201,"children":14202},{"style":293},[14203],{"type":30,"value":296},{"type":25,"tag":109,"props":14205,"children":14206},{"class":111,"line":2924},[14207],{"type":25,"tag":109,"props":14208,"children":14209},{"style":1194},[14210],{"type":30,"value":14211},"  // 当前步骤（从1开始）\n",{"type":25,"tag":109,"props":14213,"children":14214},{"class":111,"line":2932},[14215,14220,14224],{"type":25,"tag":109,"props":14216,"children":14217},{"style":302},[14218],{"type":30,"value":14219},"  current",{"type":25,"tag":109,"props":14221,"children":14222},{"style":293},[14223],{"type":30,"value":310},{"type":25,"tag":109,"props":14225,"children":14226},{"style":293},[14227],{"type":30,"value":975},{"type":25,"tag":109,"props":14229,"children":14230},{"class":111,"line":2940},[14231,14235,14239,14243,14247,14251,14255,14259],{"type":25,"tag":109,"props":14232,"children":14233},{"style":302},[14234],{"type":30,"value":984},{"type":25,"tag":109,"props":14236,"children":14237},{"style":293},[14238],{"type":30,"value":310},{"type":25,"tag":109,"props":14240,"children":14241},{"style":116},[14242],{"type":30,"value":315},{"type":25,"tag":109,"props":14244,"children":14245},{"style":995},[14246],{"type":30,"value":998},{"type":25,"tag":109,"props":14248,"children":14249},{"style":293},[14250],{"type":30,"value":1003},{"type":25,"tag":109,"props":14252,"children":14253},{"style":995},[14254],{"type":30,"value":1008},{"type":25,"tag":109,"props":14256,"children":14257},{"style":116},[14258],{"type":30,"value":1013},{"type":25,"tag":109,"props":14260,"children":14261},{"style":293},[14262],{"type":30,"value":1018},{"type":25,"tag":109,"props":14264,"children":14265},{"class":111,"line":2957},[14266,14270,14274],{"type":25,"tag":109,"props":14267,"children":14268},{"style":302},[14269],{"type":30,"value":1027},{"type":25,"tag":109,"props":14271,"children":14272},{"style":293},[14273],{"type":30,"value":310},{"type":25,"tag":109,"props":14275,"children":14276},{"style":1034},[14277],{"type":30,"value":14278}," 1\n",{"type":25,"tag":109,"props":14280,"children":14281},{"class":111,"line":2977},[14282],{"type":25,"tag":109,"props":14283,"children":14284},{"style":293},[14285],{"type":30,"value":1046},{"type":25,"tag":109,"props":14287,"children":14288},{"class":111,"line":2997},[14289],{"type":25,"tag":109,"props":14290,"children":14291},{"style":1194},[14292],{"type":30,"value":14293},"  // 当前步骤状态: process | finish | error | wait\n",{"type":25,"tag":109,"props":14295,"children":14296},{"class":111,"line":3023},[14297,14302,14306],{"type":25,"tag":109,"props":14298,"children":14299},{"style":302},[14300],{"type":30,"value":14301},"  status",{"type":25,"tag":109,"props":14303,"children":14304},{"style":293},[14305],{"type":30,"value":310},{"type":25,"tag":109,"props":14307,"children":14308},{"style":293},[14309],{"type":30,"value":975},{"type":25,"tag":109,"props":14311,"children":14312},{"class":111,"line":3043},[14313,14317,14321,14325],{"type":25,"tag":109,"props":14314,"children":14315},{"style":302},[14316],{"type":30,"value":984},{"type":25,"tag":109,"props":14318,"children":14319},{"style":293},[14320],{"type":30,"value":310},{"type":25,"tag":109,"props":14322,"children":14323},{"style":995},[14324],{"type":30,"value":1008},{"type":25,"tag":109,"props":14326,"children":14327},{"style":293},[14328],{"type":30,"value":1018},{"type":25,"tag":109,"props":14330,"children":14331},{"class":111,"line":3051},[14332,14336,14340,14344,14349,14353],{"type":25,"tag":109,"props":14333,"children":14334},{"style":302},[14335],{"type":30,"value":1027},{"type":25,"tag":109,"props":14337,"children":14338},{"style":293},[14339],{"type":30,"value":310},{"type":25,"tag":109,"props":14341,"children":14342},{"style":318},[14343],{"type":30,"value":1178},{"type":25,"tag":109,"props":14345,"children":14346},{"style":225},[14347],{"type":30,"value":14348},"process",{"type":25,"tag":109,"props":14350,"children":14351},{"style":318},[14352],{"type":30,"value":321},{"type":25,"tag":109,"props":14354,"children":14355},{"style":293},[14356],{"type":30,"value":1018},{"type":25,"tag":109,"props":14358,"children":14359},{"class":111,"line":3059},[14360,14364,14368,14372,14376,14380,14384,14388,14392,14396,14400,14404,14408,14413,14417,14421,14425,14429,14433,14437,14441,14446,14450,14454,14458,14462,14466,14470],{"type":25,"tag":109,"props":14361,"children":14362},{"style":282},[14363],{"type":30,"value":1206},{"type":25,"tag":109,"props":14365,"children":14366},{"style":293},[14367],{"type":30,"value":310},{"type":25,"tag":109,"props":14369,"children":14370},{"style":293},[14371],{"type":30,"value":1215},{"type":25,"tag":109,"props":14373,"children":14374},{"style":1218},[14375],{"type":30,"value":1221},{"type":25,"tag":109,"props":14377,"children":14378},{"style":293},[14379],{"type":30,"value":1226},{"type":25,"tag":109,"props":14381,"children":14382},{"style":929},[14383],{"type":30,"value":1231},{"type":25,"tag":109,"props":14385,"children":14386},{"style":116},[14387],{"type":30,"value":315},{"type":25,"tag":109,"props":14389,"children":14390},{"style":318},[14391],{"type":30,"value":321},{"type":25,"tag":109,"props":14393,"children":14394},{"style":225},[14395],{"type":30,"value":14348},{"type":25,"tag":109,"props":14397,"children":14398},{"style":318},[14399],{"type":30,"value":321},{"type":25,"tag":109,"props":14401,"children":14402},{"style":293},[14403],{"type":30,"value":1003},{"type":25,"tag":109,"props":14405,"children":14406},{"style":318},[14407],{"type":30,"value":1178},{"type":25,"tag":109,"props":14409,"children":14410},{"style":225},[14411],{"type":30,"value":14412},"finish",{"type":25,"tag":109,"props":14414,"children":14415},{"style":318},[14416],{"type":30,"value":321},{"type":25,"tag":109,"props":14418,"children":14419},{"style":293},[14420],{"type":30,"value":1003},{"type":25,"tag":109,"props":14422,"children":14423},{"style":318},[14424],{"type":30,"value":1178},{"type":25,"tag":109,"props":14426,"children":14427},{"style":225},[14428],{"type":30,"value":7499},{"type":25,"tag":109,"props":14430,"children":14431},{"style":318},[14432],{"type":30,"value":321},{"type":25,"tag":109,"props":14434,"children":14435},{"style":293},[14436],{"type":30,"value":1003},{"type":25,"tag":109,"props":14438,"children":14439},{"style":318},[14440],{"type":30,"value":1178},{"type":25,"tag":109,"props":14442,"children":14443},{"style":225},[14444],{"type":30,"value":14445},"wait",{"type":25,"tag":109,"props":14447,"children":14448},{"style":318},[14449],{"type":30,"value":321},{"type":25,"tag":109,"props":14451,"children":14452},{"style":116},[14453],{"type":30,"value":1013},{"type":25,"tag":109,"props":14455,"children":14456},{"style":293},[14457],{"type":30,"value":1290},{"type":25,"tag":109,"props":14459,"children":14460},{"style":282},[14461],{"type":30,"value":1295},{"type":25,"tag":109,"props":14463,"children":14464},{"style":116},[14465],{"type":30,"value":290},{"type":25,"tag":109,"props":14467,"children":14468},{"style":995},[14469],{"type":30,"value":1221},{"type":25,"tag":109,"props":14471,"children":14472},{"style":116},[14473],{"type":30,"value":348},{"type":25,"tag":109,"props":14475,"children":14476},{"class":111,"line":3076},[14477],{"type":25,"tag":109,"props":14478,"children":14479},{"style":293},[14480],{"type":30,"value":1046},{"type":25,"tag":109,"props":14482,"children":14483},{"class":111,"line":3096},[14484],{"type":25,"tag":109,"props":14485,"children":14486},{"style":1194},[14487],{"type":30,"value":14488},"  // 是否垂直布局\n",{"type":25,"tag":109,"props":14490,"children":14491},{"class":111,"line":3116},[14492,14497,14501],{"type":25,"tag":109,"props":14493,"children":14494},{"style":302},[14495],{"type":30,"value":14496},"  vertical",{"type":25,"tag":109,"props":14498,"children":14499},{"style":293},[14500],{"type":30,"value":310},{"type":25,"tag":109,"props":14502,"children":14503},{"style":293},[14504],{"type":30,"value":975},{"type":25,"tag":109,"props":14506,"children":14507},{"class":111,"line":3141},[14508,14512,14516,14520],{"type":25,"tag":109,"props":14509,"children":14510},{"style":302},[14511],{"type":30,"value":984},{"type":25,"tag":109,"props":14513,"children":14514},{"style":293},[14515],{"type":30,"value":310},{"type":25,"tag":109,"props":14517,"children":14518},{"style":995},[14519],{"type":30,"value":1349},{"type":25,"tag":109,"props":14521,"children":14522},{"style":293},[14523],{"type":30,"value":1018},{"type":25,"tag":109,"props":14525,"children":14526},{"class":111,"line":3161},[14527,14531,14535],{"type":25,"tag":109,"props":14528,"children":14529},{"style":302},[14530],{"type":30,"value":1027},{"type":25,"tag":109,"props":14532,"children":14533},{"style":293},[14534],{"type":30,"value":310},{"type":25,"tag":109,"props":14536,"children":14537},{"style":1368},[14538],{"type":30,"value":11523},{"type":25,"tag":109,"props":14540,"children":14541},{"class":111,"line":3169},[14542],{"type":25,"tag":109,"props":14543,"children":14544},{"style":293},[14545],{"type":30,"value":1046},{"type":25,"tag":109,"props":14547,"children":14548},{"class":111,"line":3177},[14549],{"type":25,"tag":109,"props":14550,"children":14551},{"style":1194},[14552],{"type":30,"value":14553},"  // 尺寸: small | medium\n",{"type":25,"tag":109,"props":14555,"children":14556},{"class":111,"line":3186},[14557,14561,14565],{"type":25,"tag":109,"props":14558,"children":14559},{"style":302},[14560],{"type":30,"value":1133},{"type":25,"tag":109,"props":14562,"children":14563},{"style":293},[14564],{"type":30,"value":310},{"type":25,"tag":109,"props":14566,"children":14567},{"style":293},[14568],{"type":30,"value":975},{"type":25,"tag":109,"props":14570,"children":14571},{"class":111,"line":3195},[14572,14576,14580,14584],{"type":25,"tag":109,"props":14573,"children":14574},{"style":302},[14575],{"type":30,"value":984},{"type":25,"tag":109,"props":14577,"children":14578},{"style":293},[14579],{"type":30,"value":310},{"type":25,"tag":109,"props":14581,"children":14582},{"style":995},[14583],{"type":30,"value":1008},{"type":25,"tag":109,"props":14585,"children":14586},{"style":293},[14587],{"type":30,"value":1018},{"type":25,"tag":109,"props":14589,"children":14590},{"class":111,"line":3204},[14591,14595,14599,14603,14607,14611],{"type":25,"tag":109,"props":14592,"children":14593},{"style":302},[14594],{"type":30,"value":1027},{"type":25,"tag":109,"props":14596,"children":14597},{"style":293},[14598],{"type":30,"value":310},{"type":25,"tag":109,"props":14600,"children":14601},{"style":318},[14602],{"type":30,"value":1178},{"type":25,"tag":109,"props":14604,"children":14605},{"style":225},[14606],{"type":30,"value":1183},{"type":25,"tag":109,"props":14608,"children":14609},{"style":318},[14610],{"type":30,"value":321},{"type":25,"tag":109,"props":14612,"children":14613},{"style":293},[14614],{"type":30,"value":1018},{"type":25,"tag":109,"props":14616,"children":14617},{"class":111,"line":3213},[14618,14622,14626,14630,14634,14638,14642,14646,14650,14654,14658,14662,14666,14670,14674,14678,14682,14686,14690,14694],{"type":25,"tag":109,"props":14619,"children":14620},{"style":282},[14621],{"type":30,"value":1206},{"type":25,"tag":109,"props":14623,"children":14624},{"style":293},[14625],{"type":30,"value":310},{"type":25,"tag":109,"props":14627,"children":14628},{"style":293},[14629],{"type":30,"value":1215},{"type":25,"tag":109,"props":14631,"children":14632},{"style":1218},[14633],{"type":30,"value":1221},{"type":25,"tag":109,"props":14635,"children":14636},{"style":293},[14637],{"type":30,"value":1226},{"type":25,"tag":109,"props":14639,"children":14640},{"style":929},[14641],{"type":30,"value":1231},{"type":25,"tag":109,"props":14643,"children":14644},{"style":116},[14645],{"type":30,"value":315},{"type":25,"tag":109,"props":14647,"children":14648},{"style":318},[14649],{"type":30,"value":321},{"type":25,"tag":109,"props":14651,"children":14652},{"style":225},[14653],{"type":30,"value":1244},{"type":25,"tag":109,"props":14655,"children":14656},{"style":318},[14657],{"type":30,"value":321},{"type":25,"tag":109,"props":14659,"children":14660},{"style":293},[14661],{"type":30,"value":1003},{"type":25,"tag":109,"props":14663,"children":14664},{"style":318},[14665],{"type":30,"value":1178},{"type":25,"tag":109,"props":14667,"children":14668},{"style":225},[14669],{"type":30,"value":1183},{"type":25,"tag":109,"props":14671,"children":14672},{"style":318},[14673],{"type":30,"value":321},{"type":25,"tag":109,"props":14675,"children":14676},{"style":116},[14677],{"type":30,"value":1013},{"type":25,"tag":109,"props":14679,"children":14680},{"style":293},[14681],{"type":30,"value":1290},{"type":25,"tag":109,"props":14683,"children":14684},{"style":282},[14685],{"type":30,"value":1295},{"type":25,"tag":109,"props":14687,"children":14688},{"style":116},[14689],{"type":30,"value":290},{"type":25,"tag":109,"props":14691,"children":14692},{"style":995},[14693],{"type":30,"value":1221},{"type":25,"tag":109,"props":14695,"children":14696},{"style":116},[14697],{"type":30,"value":348},{"type":25,"tag":109,"props":14699,"children":14700},{"class":111,"line":3221},[14701],{"type":25,"tag":109,"props":14702,"children":14703},{"style":293},[14704],{"type":30,"value":1046},{"type":25,"tag":109,"props":14706,"children":14707},{"class":111,"line":3229},[14708],{"type":25,"tag":109,"props":14709,"children":14710},{"style":1194},[14711],{"type":30,"value":14712},"  // 步骤列表（从 YAML frontmatter 传入）\n",{"type":25,"tag":109,"props":14714,"children":14715},{"class":111,"line":3238},[14716,14721,14725],{"type":25,"tag":109,"props":14717,"children":14718},{"style":302},[14719],{"type":30,"value":14720},"  steps",{"type":25,"tag":109,"props":14722,"children":14723},{"style":293},[14724],{"type":30,"value":310},{"type":25,"tag":109,"props":14726,"children":14727},{"style":293},[14728],{"type":30,"value":975},{"type":25,"tag":109,"props":14730,"children":14731},{"class":111,"line":3246},[14732,14736,14740,14745],{"type":25,"tag":109,"props":14733,"children":14734},{"style":302},[14735],{"type":30,"value":984},{"type":25,"tag":109,"props":14737,"children":14738},{"style":293},[14739],{"type":30,"value":310},{"type":25,"tag":109,"props":14741,"children":14742},{"style":995},[14743],{"type":30,"value":14744}," Array",{"type":25,"tag":109,"props":14746,"children":14747},{"style":293},[14748],{"type":30,"value":1018},{"type":25,"tag":109,"props":14750,"children":14751},{"class":111,"line":3254},[14752,14756,14760,14764,14768],{"type":25,"tag":109,"props":14753,"children":14754},{"style":282},[14755],{"type":30,"value":1027},{"type":25,"tag":109,"props":14757,"children":14758},{"style":293},[14759],{"type":30,"value":310},{"type":25,"tag":109,"props":14761,"children":14762},{"style":293},[14763],{"type":30,"value":11421},{"type":25,"tag":109,"props":14765,"children":14766},{"style":929},[14767],{"type":30,"value":1231},{"type":25,"tag":109,"props":14769,"children":14770},{"style":116},[14771],{"type":30,"value":14772}," []\n",{"type":25,"tag":109,"props":14774,"children":14775},{"class":111,"line":3263},[14776],{"type":25,"tag":109,"props":14777,"children":14778},{"style":293},[14779],{"type":30,"value":1046},{"type":25,"tag":109,"props":14781,"children":14782},{"class":111,"line":6735},[14783],{"type":25,"tag":109,"props":14784,"children":14785},{"style":1194},[14786],{"type":30,"value":14787},"  // 是否显示控制按钮\n",{"type":25,"tag":109,"props":14789,"children":14790},{"class":111,"line":6760},[14791,14796,14800],{"type":25,"tag":109,"props":14792,"children":14793},{"style":302},[14794],{"type":30,"value":14795},"  showControls",{"type":25,"tag":109,"props":14797,"children":14798},{"style":293},[14799],{"type":30,"value":310},{"type":25,"tag":109,"props":14801,"children":14802},{"style":293},[14803],{"type":30,"value":975},{"type":25,"tag":109,"props":14805,"children":14806},{"class":111,"line":6808},[14807,14811,14815,14819],{"type":25,"tag":109,"props":14808,"children":14809},{"style":302},[14810],{"type":30,"value":984},{"type":25,"tag":109,"props":14812,"children":14813},{"style":293},[14814],{"type":30,"value":310},{"type":25,"tag":109,"props":14816,"children":14817},{"style":995},[14818],{"type":30,"value":1349},{"type":25,"tag":109,"props":14820,"children":14821},{"style":293},[14822],{"type":30,"value":1018},{"type":25,"tag":109,"props":14824,"children":14825},{"class":111,"line":6816},[14826,14830,14834],{"type":25,"tag":109,"props":14827,"children":14828},{"style":302},[14829],{"type":30,"value":1027},{"type":25,"tag":109,"props":14831,"children":14832},{"style":293},[14833],{"type":30,"value":310},{"type":25,"tag":109,"props":14835,"children":14836},{"style":1368},[14837],{"type":30,"value":11523},{"type":25,"tag":109,"props":14839,"children":14840},{"class":111,"line":6881},[14841],{"type":25,"tag":109,"props":14842,"children":14843},{"style":293},[14844],{"type":30,"value":1046},{"type":25,"tag":109,"props":14846,"children":14847},{"class":111,"line":6906},[14848],{"type":25,"tag":109,"props":14849,"children":14850},{"style":1194},[14851],{"type":30,"value":14852},"  // 是否可点击步骤跳转\n",{"type":25,"tag":109,"props":14854,"children":14855},{"class":111,"line":6955},[14856,14861,14865],{"type":25,"tag":109,"props":14857,"children":14858},{"style":302},[14859],{"type":30,"value":14860},"  clickable",{"type":25,"tag":109,"props":14862,"children":14863},{"style":293},[14864],{"type":30,"value":310},{"type":25,"tag":109,"props":14866,"children":14867},{"style":293},[14868],{"type":30,"value":975},{"type":25,"tag":109,"props":14870,"children":14871},{"class":111,"line":6963},[14872,14876,14880,14884],{"type":25,"tag":109,"props":14873,"children":14874},{"style":302},[14875],{"type":30,"value":984},{"type":25,"tag":109,"props":14877,"children":14878},{"style":293},[14879],{"type":30,"value":310},{"type":25,"tag":109,"props":14881,"children":14882},{"style":995},[14883],{"type":30,"value":1349},{"type":25,"tag":109,"props":14885,"children":14886},{"style":293},[14887],{"type":30,"value":1018},{"type":25,"tag":109,"props":14889,"children":14890},{"class":111,"line":6971},[14891,14895,14899],{"type":25,"tag":109,"props":14892,"children":14893},{"style":302},[14894],{"type":30,"value":1027},{"type":25,"tag":109,"props":14896,"children":14897},{"style":293},[14898],{"type":30,"value":310},{"type":25,"tag":109,"props":14900,"children":14901},{"style":1368},[14902],{"type":30,"value":11523},{"type":25,"tag":109,"props":14904,"children":14905},{"class":111,"line":6979},[14906],{"type":25,"tag":109,"props":14907,"children":14908},{"style":293},[14909],{"type":30,"value":1503},{"type":25,"tag":109,"props":14911,"children":14912},{"class":111,"line":6988},[14913,14917],{"type":25,"tag":109,"props":14914,"children":14915},{"style":293},[14916],{"type":30,"value":343},{"type":25,"tag":109,"props":14918,"children":14919},{"style":116},[14920],{"type":30,"value":348},{"type":25,"tag":109,"props":14922,"children":14923},{"class":111,"line":7074},[14924],{"type":25,"tag":109,"props":14925,"children":14926},{"emptyLinePlaceholder":599},[14927],{"type":30,"value":602},{"type":25,"tag":109,"props":14929,"children":14930},{"class":111,"line":7201},[14931,14935,14939,14943,14947,14951,14955,14960,14964,14968,14972,14977,14981,14985,14989,14994,14998],{"type":25,"tag":109,"props":14932,"children":14933},{"style":929},[14934],{"type":30,"value":932},{"type":25,"tag":109,"props":14936,"children":14937},{"style":935},[14938],{"type":30,"value":1536},{"type":25,"tag":109,"props":14940,"children":14941},{"style":941},[14942],{"type":30,"value":944},{"type":25,"tag":109,"props":14944,"children":14945},{"style":282},[14946],{"type":30,"value":1545},{"type":25,"tag":109,"props":14948,"children":14949},{"style":116},[14950],{"type":30,"value":1550},{"type":25,"tag":109,"props":14952,"children":14953},{"style":318},[14954],{"type":30,"value":321},{"type":25,"tag":109,"props":14956,"children":14957},{"style":225},[14958],{"type":30,"value":14959},"update:current",{"type":25,"tag":109,"props":14961,"children":14962},{"style":318},[14963],{"type":30,"value":321},{"type":25,"tag":109,"props":14965,"children":14966},{"style":293},[14967],{"type":30,"value":1003},{"type":25,"tag":109,"props":14969,"children":14970},{"style":318},[14971],{"type":30,"value":1178},{"type":25,"tag":109,"props":14973,"children":14974},{"style":225},[14975],{"type":30,"value":14976},"change",{"type":25,"tag":109,"props":14978,"children":14979},{"style":318},[14980],{"type":30,"value":321},{"type":25,"tag":109,"props":14982,"children":14983},{"style":293},[14984],{"type":30,"value":1003},{"type":25,"tag":109,"props":14986,"children":14987},{"style":318},[14988],{"type":30,"value":1178},{"type":25,"tag":109,"props":14990,"children":14991},{"style":225},[14992],{"type":30,"value":14993},"complete",{"type":25,"tag":109,"props":14995,"children":14996},{"style":318},[14997],{"type":30,"value":321},{"type":25,"tag":109,"props":14999,"children":15000},{"style":116},[15001],{"type":30,"value":1568},{"type":25,"tag":109,"props":15003,"children":15004},{"class":111,"line":7226},[15005],{"type":25,"tag":109,"props":15006,"children":15007},{"emptyLinePlaceholder":599},[15008],{"type":30,"value":602},{"type":25,"tag":109,"props":15010,"children":15011},{"class":111,"line":7274},[15012,15016,15021,15025,15029,15033,15037,15041,15045,15049,15054,15058,15062,15066],{"type":25,"tag":109,"props":15013,"children":15014},{"style":929},[15015],{"type":30,"value":932},{"type":25,"tag":109,"props":15017,"children":15018},{"style":935},[15019],{"type":30,"value":15020}," currentStep",{"type":25,"tag":109,"props":15022,"children":15023},{"style":941},[15024],{"type":30,"value":944},{"type":25,"tag":109,"props":15026,"children":15027},{"style":282},[15028],{"type":30,"value":1987},{"type":25,"tag":109,"props":15030,"children":15031},{"style":116},[15032],{"type":30,"value":290},{"type":25,"tag":109,"props":15034,"children":15035},{"style":282},[15036],{"type":30,"value":998},{"type":25,"tag":109,"props":15038,"children":15039},{"style":116},[15040],{"type":30,"value":290},{"type":25,"tag":109,"props":15042,"children":15043},{"style":935},[15044],{"type":30,"value":2005},{"type":25,"tag":109,"props":15046,"children":15047},{"style":293},[15048],{"type":30,"value":1290},{"type":25,"tag":109,"props":15050,"children":15051},{"style":995},[15052],{"type":30,"value":15053},"current",{"type":25,"tag":109,"props":15055,"children":15056},{"style":116},[15057],{"type":30,"value":1794},{"type":25,"tag":109,"props":15059,"children":15060},{"style":941},[15061],{"type":30,"value":2690},{"type":25,"tag":109,"props":15063,"children":15064},{"style":1034},[15065],{"type":30,"value":2917},{"type":25,"tag":109,"props":15067,"children":15068},{"style":116},[15069],{"type":30,"value":348},{"type":25,"tag":109,"props":15071,"children":15072},{"class":111,"line":7282},[15073],{"type":25,"tag":109,"props":15074,"children":15075},{"emptyLinePlaceholder":599},[15076],{"type":30,"value":602},{"type":25,"tag":109,"props":15078,"children":15079},{"class":111,"line":7290},[15080,15084,15088,15092,15096,15100,15104,15108,15112,15116,15121,15125,15129],{"type":25,"tag":109,"props":15081,"children":15082},{"style":282},[15083],{"type":30,"value":2050},{"type":25,"tag":109,"props":15085,"children":15086},{"style":116},[15087],{"type":30,"value":290},{"type":25,"tag":109,"props":15089,"children":15090},{"style":293},[15091],{"type":30,"value":2242},{"type":25,"tag":109,"props":15093,"children":15094},{"style":929},[15095],{"type":30,"value":1231},{"type":25,"tag":109,"props":15097,"children":15098},{"style":935},[15099],{"type":30,"value":938},{"type":25,"tag":109,"props":15101,"children":15102},{"style":293},[15103],{"type":30,"value":1290},{"type":25,"tag":109,"props":15105,"children":15106},{"style":995},[15107],{"type":30,"value":15053},{"type":25,"tag":109,"props":15109,"children":15110},{"style":293},[15111],{"type":30,"value":1003},{"type":25,"tag":109,"props":15113,"children":15114},{"style":293},[15115],{"type":30,"value":1215},{"type":25,"tag":109,"props":15117,"children":15118},{"style":1218},[15119],{"type":30,"value":15120},"newVal",{"type":25,"tag":109,"props":15122,"children":15123},{"style":293},[15124],{"type":30,"value":1226},{"type":25,"tag":109,"props":15126,"children":15127},{"style":929},[15128],{"type":30,"value":1231},{"type":25,"tag":109,"props":15130,"children":15131},{"style":293},[15132],{"type":30,"value":975},{"type":25,"tag":109,"props":15134,"children":15135},{"class":111,"line":7298},[15136,15141,15145,15149,15153,15157,15161,15165,15169,15173],{"type":25,"tag":109,"props":15137,"children":15138},{"style":935},[15139],{"type":30,"value":15140},"  currentStep",{"type":25,"tag":109,"props":15142,"children":15143},{"style":293},[15144],{"type":30,"value":1290},{"type":25,"tag":109,"props":15146,"children":15147},{"style":995},[15148],{"type":30,"value":1221},{"type":25,"tag":109,"props":15150,"children":15151},{"style":941},[15152],{"type":30,"value":944},{"type":25,"tag":109,"props":15154,"children":15155},{"style":282},[15156],{"type":30,"value":1647},{"type":25,"tag":109,"props":15158,"children":15159},{"style":1650},[15160],{"type":30,"value":290},{"type":25,"tag":109,"props":15162,"children":15163},{"style":995},[15164],{"type":30,"value":15120},{"type":25,"tag":109,"props":15166,"children":15167},{"style":1650},[15168],{"type":30,"value":1794},{"type":25,"tag":109,"props":15170,"children":15171},{"style":941},[15172],{"type":30,"value":2690},{"type":25,"tag":109,"props":15174,"children":15175},{"style":1034},[15176],{"type":30,"value":14278},{"type":25,"tag":109,"props":15178,"children":15179},{"class":111,"line":7307},[15180,15184],{"type":25,"tag":109,"props":15181,"children":15182},{"style":293},[15183],{"type":30,"value":343},{"type":25,"tag":109,"props":15185,"children":15186},{"style":116},[15187],{"type":30,"value":348},{"type":25,"tag":109,"props":15189,"children":15190},{"class":111,"line":7356},[15191],{"type":25,"tag":109,"props":15192,"children":15193},{"emptyLinePlaceholder":599},[15194],{"type":30,"value":602},{"type":25,"tag":109,"props":15196,"children":15197},{"class":111,"line":7415},[15198,15202,15207,15211,15215,15219,15223,15227],{"type":25,"tag":109,"props":15199,"children":15200},{"style":929},[15201],{"type":30,"value":932},{"type":25,"tag":109,"props":15203,"children":15204},{"style":935},[15205],{"type":30,"value":15206}," stepsList",{"type":25,"tag":109,"props":15208,"children":15209},{"style":941},[15210],{"type":30,"value":944},{"type":25,"tag":109,"props":15212,"children":15213},{"style":282},[15214],{"type":30,"value":2233},{"type":25,"tag":109,"props":15216,"children":15217},{"style":116},[15218],{"type":30,"value":290},{"type":25,"tag":109,"props":15220,"children":15221},{"style":293},[15222],{"type":30,"value":2242},{"type":25,"tag":109,"props":15224,"children":15225},{"style":929},[15226],{"type":30,"value":1231},{"type":25,"tag":109,"props":15228,"children":15229},{"style":293},[15230],{"type":30,"value":975},{"type":25,"tag":109,"props":15232,"children":15233},{"class":111,"line":7423},[15234,15238,15242,15246,15251,15256],{"type":25,"tag":109,"props":15235,"children":15236},{"style":271},[15237],{"type":30,"value":1902},{"type":25,"tag":109,"props":15239,"children":15240},{"style":935},[15241],{"type":30,"value":938},{"type":25,"tag":109,"props":15243,"children":15244},{"style":293},[15245],{"type":30,"value":1290},{"type":25,"tag":109,"props":15247,"children":15248},{"style":995},[15249],{"type":30,"value":15250},"steps",{"type":25,"tag":109,"props":15252,"children":15253},{"style":941},[15254],{"type":30,"value":15255}," ||",{"type":25,"tag":109,"props":15257,"children":15258},{"style":1650},[15259],{"type":30,"value":14772},{"type":25,"tag":109,"props":15261,"children":15262},{"class":111,"line":7431},[15263,15267],{"type":25,"tag":109,"props":15264,"children":15265},{"style":293},[15266],{"type":30,"value":343},{"type":25,"tag":109,"props":15268,"children":15269},{"style":116},[15270],{"type":30,"value":348},{"type":25,"tag":109,"props":15272,"children":15273},{"class":111,"line":7440},[15274],{"type":25,"tag":109,"props":15275,"children":15276},{"emptyLinePlaceholder":599},[15277],{"type":30,"value":602},{"type":25,"tag":109,"props":15279,"children":15280},{"class":111,"line":7453},[15281,15285,15290,15294,15298,15302],{"type":25,"tag":109,"props":15282,"children":15283},{"style":929},[15284],{"type":30,"value":932},{"type":25,"tag":109,"props":15286,"children":15287},{"style":1587},[15288],{"type":30,"value":15289}," prevStep",{"type":25,"tag":109,"props":15291,"children":15292},{"style":941},[15293],{"type":30,"value":944},{"type":25,"tag":109,"props":15295,"children":15296},{"style":293},[15297],{"type":30,"value":11421},{"type":25,"tag":109,"props":15299,"children":15300},{"style":929},[15301],{"type":30,"value":1231},{"type":25,"tag":109,"props":15303,"children":15304},{"style":293},[15305],{"type":30,"value":975},{"type":25,"tag":109,"props":15307,"children":15308},{"class":111,"line":7484},[15309,15313,15317,15321,15325,15329,15334,15338,15342],{"type":25,"tag":109,"props":15310,"children":15311},{"style":271},[15312],{"type":30,"value":1711},{"type":25,"tag":109,"props":15314,"children":15315},{"style":1650},[15316],{"type":30,"value":1215},{"type":25,"tag":109,"props":15318,"children":15319},{"style":935},[15320],{"type":30,"value":12873},{"type":25,"tag":109,"props":15322,"children":15323},{"style":293},[15324],{"type":30,"value":1290},{"type":25,"tag":109,"props":15326,"children":15327},{"style":995},[15328],{"type":30,"value":1221},{"type":25,"tag":109,"props":15330,"children":15331},{"style":941},[15332],{"type":30,"value":15333}," >",{"type":25,"tag":109,"props":15335,"children":15336},{"style":1034},[15337],{"type":30,"value":2917},{"type":25,"tag":109,"props":15339,"children":15340},{"style":1650},[15341],{"type":30,"value":1794},{"type":25,"tag":109,"props":15343,"children":15344},{"style":293},[15345],{"type":30,"value":296},{"type":25,"tag":109,"props":15347,"children":15348},{"class":111,"line":7532},[15349,15354,15358,15362],{"type":25,"tag":109,"props":15350,"children":15351},{"style":935},[15352],{"type":30,"value":15353},"    currentStep",{"type":25,"tag":109,"props":15355,"children":15356},{"style":293},[15357],{"type":30,"value":1290},{"type":25,"tag":109,"props":15359,"children":15360},{"style":995},[15361],{"type":30,"value":1221},{"type":25,"tag":109,"props":15363,"children":15364},{"style":941},[15365],{"type":30,"value":15366},"--\n",{"type":25,"tag":109,"props":15368,"children":15369},{"class":111,"line":7544},[15370,15374,15378,15382,15386,15390,15394,15398,15402,15406],{"type":25,"tag":109,"props":15371,"children":15372},{"style":282},[15373],{"type":30,"value":2461},{"type":25,"tag":109,"props":15375,"children":15376},{"style":1650},[15377],{"type":30,"value":290},{"type":25,"tag":109,"props":15379,"children":15380},{"style":318},[15381],{"type":30,"value":321},{"type":25,"tag":109,"props":15383,"children":15384},{"style":225},[15385],{"type":30,"value":14959},{"type":25,"tag":109,"props":15387,"children":15388},{"style":318},[15389],{"type":30,"value":321},{"type":25,"tag":109,"props":15391,"children":15392},{"style":293},[15393],{"type":30,"value":1003},{"type":25,"tag":109,"props":15395,"children":15396},{"style":935},[15397],{"type":30,"value":15020},{"type":25,"tag":109,"props":15399,"children":15400},{"style":293},[15401],{"type":30,"value":1290},{"type":25,"tag":109,"props":15403,"children":15404},{"style":995},[15405],{"type":30,"value":1221},{"type":25,"tag":109,"props":15407,"children":15408},{"style":1650},[15409],{"type":30,"value":348},{"type":25,"tag":109,"props":15411,"children":15412},{"class":111,"line":7552},[15413,15417,15421,15425,15429,15433,15437,15441,15445,15449],{"type":25,"tag":109,"props":15414,"children":15415},{"style":282},[15416],{"type":30,"value":2461},{"type":25,"tag":109,"props":15418,"children":15419},{"style":1650},[15420],{"type":30,"value":290},{"type":25,"tag":109,"props":15422,"children":15423},{"style":318},[15424],{"type":30,"value":321},{"type":25,"tag":109,"props":15426,"children":15427},{"style":225},[15428],{"type":30,"value":14976},{"type":25,"tag":109,"props":15430,"children":15431},{"style":318},[15432],{"type":30,"value":321},{"type":25,"tag":109,"props":15434,"children":15435},{"style":293},[15436],{"type":30,"value":1003},{"type":25,"tag":109,"props":15438,"children":15439},{"style":935},[15440],{"type":30,"value":15020},{"type":25,"tag":109,"props":15442,"children":15443},{"style":293},[15444],{"type":30,"value":1290},{"type":25,"tag":109,"props":15446,"children":15447},{"style":995},[15448],{"type":30,"value":1221},{"type":25,"tag":109,"props":15450,"children":15451},{"style":1650},[15452],{"type":30,"value":348},{"type":25,"tag":109,"props":15454,"children":15455},{"class":111,"line":7560},[15456],{"type":25,"tag":109,"props":15457,"children":15458},{"style":293},[15459],{"type":30,"value":1503},{"type":25,"tag":109,"props":15461,"children":15462},{"class":111,"line":7576},[15463],{"type":25,"tag":109,"props":15464,"children":15465},{"style":293},[15466],{"type":30,"value":1957},{"type":25,"tag":109,"props":15468,"children":15469},{"class":111,"line":7584},[15470],{"type":25,"tag":109,"props":15471,"children":15472},{"emptyLinePlaceholder":599},[15473],{"type":30,"value":602},{"type":25,"tag":109,"props":15475,"children":15476},{"class":111,"line":7604},[15477,15481,15486,15490,15494,15498],{"type":25,"tag":109,"props":15478,"children":15479},{"style":929},[15480],{"type":30,"value":932},{"type":25,"tag":109,"props":15482,"children":15483},{"style":1587},[15484],{"type":30,"value":15485}," nextStep",{"type":25,"tag":109,"props":15487,"children":15488},{"style":941},[15489],{"type":30,"value":944},{"type":25,"tag":109,"props":15491,"children":15492},{"style":293},[15493],{"type":30,"value":11421},{"type":25,"tag":109,"props":15495,"children":15496},{"style":929},[15497],{"type":30,"value":1231},{"type":25,"tag":109,"props":15499,"children":15500},{"style":293},[15501],{"type":30,"value":975},{"type":25,"tag":109,"props":15503,"children":15504},{"class":111,"line":7621},[15505,15509,15513,15517,15521,15525,15529,15533,15537,15541,15545,15550,15554],{"type":25,"tag":109,"props":15506,"children":15507},{"style":271},[15508],{"type":30,"value":1711},{"type":25,"tag":109,"props":15510,"children":15511},{"style":1650},[15512],{"type":30,"value":1215},{"type":25,"tag":109,"props":15514,"children":15515},{"style":935},[15516],{"type":30,"value":12873},{"type":25,"tag":109,"props":15518,"children":15519},{"style":293},[15520],{"type":30,"value":1290},{"type":25,"tag":109,"props":15522,"children":15523},{"style":995},[15524],{"type":30,"value":1221},{"type":25,"tag":109,"props":15526,"children":15527},{"style":941},[15528],{"type":30,"value":11188},{"type":25,"tag":109,"props":15530,"children":15531},{"style":935},[15532],{"type":30,"value":15206},{"type":25,"tag":109,"props":15534,"children":15535},{"style":293},[15536],{"type":30,"value":1290},{"type":25,"tag":109,"props":15538,"children":15539},{"style":935},[15540],{"type":30,"value":1221},{"type":25,"tag":109,"props":15542,"children":15543},{"style":293},[15544],{"type":30,"value":1290},{"type":25,"tag":109,"props":15546,"children":15547},{"style":995},[15548],{"type":30,"value":15549},"length",{"type":25,"tag":109,"props":15551,"children":15552},{"style":1650},[15553],{"type":30,"value":1794},{"type":25,"tag":109,"props":15555,"children":15556},{"style":293},[15557],{"type":30,"value":296},{"type":25,"tag":109,"props":15559,"children":15560},{"class":111,"line":7643},[15561,15565,15569,15573],{"type":25,"tag":109,"props":15562,"children":15563},{"style":935},[15564],{"type":30,"value":15353},{"type":25,"tag":109,"props":15566,"children":15567},{"style":293},[15568],{"type":30,"value":1290},{"type":25,"tag":109,"props":15570,"children":15571},{"style":995},[15572],{"type":30,"value":1221},{"type":25,"tag":109,"props":15574,"children":15575},{"style":941},[15576],{"type":30,"value":15577},"++\n",{"type":25,"tag":109,"props":15579,"children":15580},{"class":111,"line":7670},[15581,15585,15589,15593,15597,15601,15605,15609,15613,15617],{"type":25,"tag":109,"props":15582,"children":15583},{"style":282},[15584],{"type":30,"value":2461},{"type":25,"tag":109,"props":15586,"children":15587},{"style":1650},[15588],{"type":30,"value":290},{"type":25,"tag":109,"props":15590,"children":15591},{"style":318},[15592],{"type":30,"value":321},{"type":25,"tag":109,"props":15594,"children":15595},{"style":225},[15596],{"type":30,"value":14959},{"type":25,"tag":109,"props":15598,"children":15599},{"style":318},[15600],{"type":30,"value":321},{"type":25,"tag":109,"props":15602,"children":15603},{"style":293},[15604],{"type":30,"value":1003},{"type":25,"tag":109,"props":15606,"children":15607},{"style":935},[15608],{"type":30,"value":15020},{"type":25,"tag":109,"props":15610,"children":15611},{"style":293},[15612],{"type":30,"value":1290},{"type":25,"tag":109,"props":15614,"children":15615},{"style":995},[15616],{"type":30,"value":1221},{"type":25,"tag":109,"props":15618,"children":15619},{"style":1650},[15620],{"type":30,"value":348},{"type":25,"tag":109,"props":15622,"children":15623},{"class":111,"line":7678},[15624,15628,15632,15636,15640,15644,15648,15652,15656,15660],{"type":25,"tag":109,"props":15625,"children":15626},{"style":282},[15627],{"type":30,"value":2461},{"type":25,"tag":109,"props":15629,"children":15630},{"style":1650},[15631],{"type":30,"value":290},{"type":25,"tag":109,"props":15633,"children":15634},{"style":318},[15635],{"type":30,"value":321},{"type":25,"tag":109,"props":15637,"children":15638},{"style":225},[15639],{"type":30,"value":14976},{"type":25,"tag":109,"props":15641,"children":15642},{"style":318},[15643],{"type":30,"value":321},{"type":25,"tag":109,"props":15645,"children":15646},{"style":293},[15647],{"type":30,"value":1003},{"type":25,"tag":109,"props":15649,"children":15650},{"style":935},[15651],{"type":30,"value":15020},{"type":25,"tag":109,"props":15653,"children":15654},{"style":293},[15655],{"type":30,"value":1290},{"type":25,"tag":109,"props":15657,"children":15658},{"style":995},[15659],{"type":30,"value":1221},{"type":25,"tag":109,"props":15661,"children":15662},{"style":1650},[15663],{"type":30,"value":348},{"type":25,"tag":109,"props":15665,"children":15666},{"class":111,"line":7686},[15667],{"type":25,"tag":109,"props":15668,"children":15669},{"style":293},[15670],{"type":30,"value":1503},{"type":25,"tag":109,"props":15672,"children":15673},{"class":111,"line":7718},[15674],{"type":25,"tag":109,"props":15675,"children":15676},{"style":293},[15677],{"type":30,"value":1957},{"type":25,"tag":109,"props":15679,"children":15680},{"class":111,"line":7744},[15681],{"type":25,"tag":109,"props":15682,"children":15683},{"emptyLinePlaceholder":599},[15684],{"type":30,"value":602},{"type":25,"tag":109,"props":15686,"children":15687},{"class":111,"line":7768},[15688,15692,15697,15701,15705,15709,15713,15717],{"type":25,"tag":109,"props":15689,"children":15690},{"style":929},[15691],{"type":30,"value":932},{"type":25,"tag":109,"props":15693,"children":15694},{"style":1587},[15695],{"type":30,"value":15696}," onStepChange",{"type":25,"tag":109,"props":15698,"children":15699},{"style":941},[15700],{"type":30,"value":944},{"type":25,"tag":109,"props":15702,"children":15703},{"style":293},[15704],{"type":30,"value":1215},{"type":25,"tag":109,"props":15706,"children":15707},{"style":1218},[15708],{"type":30,"value":1221},{"type":25,"tag":109,"props":15710,"children":15711},{"style":293},[15712],{"type":30,"value":1226},{"type":25,"tag":109,"props":15714,"children":15715},{"style":929},[15716],{"type":30,"value":1231},{"type":25,"tag":109,"props":15718,"children":15719},{"style":293},[15720],{"type":30,"value":975},{"type":25,"tag":109,"props":15722,"children":15723},{"class":111,"line":7776},[15724,15728,15732,15736,15740,15745,15749],{"type":25,"tag":109,"props":15725,"children":15726},{"style":271},[15727],{"type":30,"value":1711},{"type":25,"tag":109,"props":15729,"children":15730},{"style":1650},[15731],{"type":30,"value":1215},{"type":25,"tag":109,"props":15733,"children":15734},{"style":935},[15735],{"type":30,"value":2005},{"type":25,"tag":109,"props":15737,"children":15738},{"style":293},[15739],{"type":30,"value":1290},{"type":25,"tag":109,"props":15741,"children":15742},{"style":995},[15743],{"type":30,"value":15744},"clickable",{"type":25,"tag":109,"props":15746,"children":15747},{"style":1650},[15748],{"type":30,"value":1794},{"type":25,"tag":109,"props":15750,"children":15751},{"style":293},[15752],{"type":30,"value":296},{"type":25,"tag":109,"props":15754,"children":15755},{"class":111,"line":12202},[15756,15760,15764,15768,15772],{"type":25,"tag":109,"props":15757,"children":15758},{"style":935},[15759],{"type":30,"value":15353},{"type":25,"tag":109,"props":15761,"children":15762},{"style":293},[15763],{"type":30,"value":1290},{"type":25,"tag":109,"props":15765,"children":15766},{"style":995},[15767],{"type":30,"value":1221},{"type":25,"tag":109,"props":15769,"children":15770},{"style":941},[15771],{"type":30,"value":944},{"type":25,"tag":109,"props":15773,"children":15774},{"style":995},[15775],{"type":30,"value":15776}," value\n",{"type":25,"tag":109,"props":15778,"children":15779},{"class":111,"line":12294},[15780,15784,15788,15792,15796,15800,15804,15809],{"type":25,"tag":109,"props":15781,"children":15782},{"style":282},[15783],{"type":30,"value":2461},{"type":25,"tag":109,"props":15785,"children":15786},{"style":1650},[15787],{"type":30,"value":290},{"type":25,"tag":109,"props":15789,"children":15790},{"style":318},[15791],{"type":30,"value":321},{"type":25,"tag":109,"props":15793,"children":15794},{"style":225},[15795],{"type":30,"value":14959},{"type":25,"tag":109,"props":15797,"children":15798},{"style":318},[15799],{"type":30,"value":321},{"type":25,"tag":109,"props":15801,"children":15802},{"style":293},[15803],{"type":30,"value":1003},{"type":25,"tag":109,"props":15805,"children":15806},{"style":995},[15807],{"type":30,"value":15808}," value",{"type":25,"tag":109,"props":15810,"children":15811},{"style":1650},[15812],{"type":30,"value":348},{"type":25,"tag":109,"props":15814,"children":15815},{"class":111,"line":12302},[15816,15820,15824,15828,15832,15836,15840,15844],{"type":25,"tag":109,"props":15817,"children":15818},{"style":282},[15819],{"type":30,"value":2461},{"type":25,"tag":109,"props":15821,"children":15822},{"style":1650},[15823],{"type":30,"value":290},{"type":25,"tag":109,"props":15825,"children":15826},{"style":318},[15827],{"type":30,"value":321},{"type":25,"tag":109,"props":15829,"children":15830},{"style":225},[15831],{"type":30,"value":14976},{"type":25,"tag":109,"props":15833,"children":15834},{"style":318},[15835],{"type":30,"value":321},{"type":25,"tag":109,"props":15837,"children":15838},{"style":293},[15839],{"type":30,"value":1003},{"type":25,"tag":109,"props":15841,"children":15842},{"style":995},[15843],{"type":30,"value":15808},{"type":25,"tag":109,"props":15845,"children":15846},{"style":1650},[15847],{"type":30,"value":348},{"type":25,"tag":109,"props":15849,"children":15850},{"class":111,"line":12310},[15851],{"type":25,"tag":109,"props":15852,"children":15853},{"style":293},[15854],{"type":30,"value":1503},{"type":25,"tag":109,"props":15856,"children":15857},{"class":111,"line":12319},[15858],{"type":25,"tag":109,"props":15859,"children":15860},{"style":293},[15861],{"type":30,"value":1957},{"type":25,"tag":109,"props":15863,"children":15864},{"class":111,"line":12355},[15865],{"type":25,"tag":109,"props":15866,"children":15867},{"emptyLinePlaceholder":599},[15868],{"type":30,"value":602},{"type":25,"tag":109,"props":15870,"children":15871},{"class":111,"line":12415},[15872,15876,15881,15885,15889,15893],{"type":25,"tag":109,"props":15873,"children":15874},{"style":929},[15875],{"type":30,"value":932},{"type":25,"tag":109,"props":15877,"children":15878},{"style":1587},[15879],{"type":30,"value":15880}," onComplete",{"type":25,"tag":109,"props":15882,"children":15883},{"style":941},[15884],{"type":30,"value":944},{"type":25,"tag":109,"props":15886,"children":15887},{"style":293},[15888],{"type":30,"value":11421},{"type":25,"tag":109,"props":15890,"children":15891},{"style":929},[15892],{"type":30,"value":1231},{"type":25,"tag":109,"props":15894,"children":15895},{"style":293},[15896],{"type":30,"value":975},{"type":25,"tag":109,"props":15898,"children":15899},{"class":111,"line":12423},[15900,15905,15909,15913,15917,15921],{"type":25,"tag":109,"props":15901,"children":15902},{"style":282},[15903],{"type":30,"value":15904},"  emit",{"type":25,"tag":109,"props":15906,"children":15907},{"style":1650},[15908],{"type":30,"value":290},{"type":25,"tag":109,"props":15910,"children":15911},{"style":318},[15912],{"type":30,"value":321},{"type":25,"tag":109,"props":15914,"children":15915},{"style":225},[15916],{"type":30,"value":14993},{"type":25,"tag":109,"props":15918,"children":15919},{"style":318},[15920],{"type":30,"value":321},{"type":25,"tag":109,"props":15922,"children":15923},{"style":1650},[15924],{"type":30,"value":348},{"type":25,"tag":109,"props":15926,"children":15927},{"class":111,"line":12431},[15928],{"type":25,"tag":109,"props":15929,"children":15930},{"style":293},[15931],{"type":30,"value":1957},{"type":25,"tag":109,"props":15933,"children":15934},{"class":111,"line":12440},[15935,15939,15943],{"type":25,"tag":109,"props":15936,"children":15937},{"style":293},[15938],{"type":30,"value":876},{"type":25,"tag":109,"props":15940,"children":15941},{"style":302},[15942],{"type":30,"value":905},{"type":25,"tag":109,"props":15944,"children":15945},{"style":293},[15946],{"type":30,"value":427},{"type":25,"tag":109,"props":15948,"children":15949},{"class":111,"line":12465},[15950],{"type":25,"tag":109,"props":15951,"children":15952},{"emptyLinePlaceholder":599},[15953],{"type":30,"value":602},{"type":25,"tag":109,"props":15955,"children":15956},{"class":111,"line":12537},[15957,15961,15965,15969],{"type":25,"tag":109,"props":15958,"children":15959},{"style":293},[15960],{"type":30,"value":418},{"type":25,"tag":109,"props":15962,"children":15963},{"style":302},[15964],{"type":30,"value":2744},{"type":25,"tag":109,"props":15966,"children":15967},{"style":443},[15968],{"type":30,"value":2749},{"type":25,"tag":109,"props":15970,"children":15971},{"style":293},[15972],{"type":30,"value":427},{"type":25,"tag":109,"props":15974,"children":15975},{"class":111,"line":12545},[15976],{"type":25,"tag":109,"props":15977,"children":15978},{"style":1194},[15979],{"type":30,"value":15980},"/* 暗色模式下 n-steps 组件的颜色调整 */\n",{"type":25,"tag":109,"props":15982,"children":15983},{"class":111,"line":12553},[15984,15988,15992,15996,16001,16005,16009,16014,16018],{"type":25,"tag":109,"props":15985,"children":15986},{"style":2759},[15987],{"type":30,"value":1290},{"type":25,"tag":109,"props":15989,"children":15990},{"style":2764},[15991],{"type":30,"value":12329},{"type":25,"tag":109,"props":15993,"children":15994},{"style":2759},[15995],{"type":30,"value":12334},{"type":25,"tag":109,"props":15997,"children":15998},{"style":2764},[15999],{"type":30,"value":16000},"steps-mdc",{"type":25,"tag":109,"props":16002,"children":16003},{"style":7698},[16004],{"type":30,"value":7701},{"type":25,"tag":109,"props":16006,"children":16007},{"style":2759},[16008],{"type":30,"value":1290},{"type":25,"tag":109,"props":16010,"children":16011},{"style":2764},[16012],{"type":30,"value":16013},"n-step__title",{"type":25,"tag":109,"props":16015,"children":16016},{"style":116},[16017],{"type":30,"value":1794},{"type":25,"tag":109,"props":16019,"children":16020},{"style":293},[16021],{"type":30,"value":296},{"type":25,"tag":109,"props":16023,"children":16024},{"class":111,"line":12562},[16025,16030,16034,16038,16043],{"type":25,"tag":109,"props":16026,"children":16027},{"style":2778},[16028],{"type":30,"value":16029},"  color",{"type":25,"tag":109,"props":16031,"children":16032},{"style":293},[16033],{"type":30,"value":310},{"type":25,"tag":109,"props":16035,"children":16036},{"style":2759},[16037],{"type":30,"value":7658},{"type":25,"tag":109,"props":16039,"children":16040},{"style":2788},[16041],{"type":30,"value":16042},"e2e8f0",{"type":25,"tag":109,"props":16044,"children":16045},{"style":293},[16046],{"type":30,"value":2796},{"type":25,"tag":109,"props":16048,"children":16049},{"class":111,"line":12587},[16050],{"type":25,"tag":109,"props":16051,"children":16052},{"style":293},[16053],{"type":30,"value":1957},{"type":25,"tag":109,"props":16055,"children":16056},{"class":111,"line":12656},[16057],{"type":25,"tag":109,"props":16058,"children":16059},{"emptyLinePlaceholder":599},[16060],{"type":30,"value":602},{"type":25,"tag":109,"props":16062,"children":16063},{"class":111,"line":12664},[16064,16068,16072,16076,16080,16084,16088,16093,16097],{"type":25,"tag":109,"props":16065,"children":16066},{"style":2759},[16067],{"type":30,"value":1290},{"type":25,"tag":109,"props":16069,"children":16070},{"style":2764},[16071],{"type":30,"value":12329},{"type":25,"tag":109,"props":16073,"children":16074},{"style":2759},[16075],{"type":30,"value":12334},{"type":25,"tag":109,"props":16077,"children":16078},{"style":2764},[16079],{"type":30,"value":16000},{"type":25,"tag":109,"props":16081,"children":16082},{"style":7698},[16083],{"type":30,"value":7701},{"type":25,"tag":109,"props":16085,"children":16086},{"style":2759},[16087],{"type":30,"value":1290},{"type":25,"tag":109,"props":16089,"children":16090},{"style":2764},[16091],{"type":30,"value":16092},"n-step__description",{"type":25,"tag":109,"props":16094,"children":16095},{"style":116},[16096],{"type":30,"value":1794},{"type":25,"tag":109,"props":16098,"children":16099},{"style":293},[16100],{"type":30,"value":296},{"type":25,"tag":109,"props":16102,"children":16104},{"class":111,"line":16103},192,[16105,16109,16113,16117,16122],{"type":25,"tag":109,"props":16106,"children":16107},{"style":2778},[16108],{"type":30,"value":16029},{"type":25,"tag":109,"props":16110,"children":16111},{"style":293},[16112],{"type":30,"value":310},{"type":25,"tag":109,"props":16114,"children":16115},{"style":2759},[16116],{"type":30,"value":7658},{"type":25,"tag":109,"props":16118,"children":16119},{"style":2788},[16120],{"type":30,"value":16121},"94a3b8",{"type":25,"tag":109,"props":16123,"children":16124},{"style":293},[16125],{"type":30,"value":2796},{"type":25,"tag":109,"props":16127,"children":16129},{"class":111,"line":16128},193,[16130],{"type":25,"tag":109,"props":16131,"children":16132},{"style":293},[16133],{"type":30,"value":1957},{"type":25,"tag":109,"props":16135,"children":16137},{"class":111,"line":16136},194,[16138],{"type":25,"tag":109,"props":16139,"children":16140},{"emptyLinePlaceholder":599},[16141],{"type":30,"value":602},{"type":25,"tag":109,"props":16143,"children":16145},{"class":111,"line":16144},195,[16146,16150,16154,16158,16162,16166,16170,16175,16179],{"type":25,"tag":109,"props":16147,"children":16148},{"style":2759},[16149],{"type":30,"value":1290},{"type":25,"tag":109,"props":16151,"children":16152},{"style":2764},[16153],{"type":30,"value":12329},{"type":25,"tag":109,"props":16155,"children":16156},{"style":2759},[16157],{"type":30,"value":12334},{"type":25,"tag":109,"props":16159,"children":16160},{"style":2764},[16161],{"type":30,"value":16000},{"type":25,"tag":109,"props":16163,"children":16164},{"style":7698},[16165],{"type":30,"value":7701},{"type":25,"tag":109,"props":16167,"children":16168},{"style":2759},[16169],{"type":30,"value":1290},{"type":25,"tag":109,"props":16171,"children":16172},{"style":2764},[16173],{"type":30,"value":16174},"n-step__indicator",{"type":25,"tag":109,"props":16176,"children":16177},{"style":116},[16178],{"type":30,"value":1794},{"type":25,"tag":109,"props":16180,"children":16181},{"style":293},[16182],{"type":30,"value":296},{"type":25,"tag":109,"props":16184,"children":16186},{"class":111,"line":16185},196,[16187,16191,16195,16199,16204],{"type":25,"tag":109,"props":16188,"children":16189},{"style":2778},[16190],{"type":30,"value":7649},{"type":25,"tag":109,"props":16192,"children":16193},{"style":293},[16194],{"type":30,"value":310},{"type":25,"tag":109,"props":16196,"children":16197},{"style":2759},[16198],{"type":30,"value":7658},{"type":25,"tag":109,"props":16200,"children":16201},{"style":2788},[16202],{"type":30,"value":16203},"0f172a",{"type":25,"tag":109,"props":16205,"children":16206},{"style":293},[16207],{"type":30,"value":2796},{"type":25,"tag":109,"props":16209,"children":16211},{"class":111,"line":16210},197,[16212,16216,16220,16224,16228,16232,16236,16241],{"type":25,"tag":109,"props":16213,"children":16214},{"style":2778},[16215],{"type":30,"value":12593},{"type":25,"tag":109,"props":16217,"children":16218},{"style":293},[16219],{"type":30,"value":310},{"type":25,"tag":109,"props":16221,"children":16222},{"style":1034},[16223],{"type":30,"value":2917},{"type":25,"tag":109,"props":16225,"children":16226},{"style":2892},[16227],{"type":30,"value":12493},{"type":25,"tag":109,"props":16229,"children":16230},{"style":2788},[16231],{"type":30,"value":12610},{"type":25,"tag":109,"props":16233,"children":16234},{"style":2759},[16235],{"type":30,"value":7658},{"type":25,"tag":109,"props":16237,"children":16238},{"style":2788},[16239],{"type":30,"value":16240},"334155",{"type":25,"tag":109,"props":16242,"children":16243},{"style":293},[16244],{"type":30,"value":2796},{"type":25,"tag":109,"props":16246,"children":16248},{"class":111,"line":16247},198,[16249,16253,16257,16261,16265],{"type":25,"tag":109,"props":16250,"children":16251},{"style":2778},[16252],{"type":30,"value":16029},{"type":25,"tag":109,"props":16254,"children":16255},{"style":293},[16256],{"type":30,"value":310},{"type":25,"tag":109,"props":16258,"children":16259},{"style":2759},[16260],{"type":30,"value":7658},{"type":25,"tag":109,"props":16262,"children":16263},{"style":2788},[16264],{"type":30,"value":16042},{"type":25,"tag":109,"props":16266,"children":16267},{"style":293},[16268],{"type":30,"value":2796},{"type":25,"tag":109,"props":16270,"children":16272},{"class":111,"line":16271},199,[16273],{"type":25,"tag":109,"props":16274,"children":16275},{"style":293},[16276],{"type":30,"value":1957},{"type":25,"tag":109,"props":16278,"children":16280},{"class":111,"line":16279},200,[16281],{"type":25,"tag":109,"props":16282,"children":16283},{"emptyLinePlaceholder":599},[16284],{"type":30,"value":602},{"type":25,"tag":109,"props":16286,"children":16288},{"class":111,"line":16287},201,[16289,16293,16297,16301,16305,16309,16313,16318,16322],{"type":25,"tag":109,"props":16290,"children":16291},{"style":2759},[16292],{"type":30,"value":1290},{"type":25,"tag":109,"props":16294,"children":16295},{"style":2764},[16296],{"type":30,"value":12329},{"type":25,"tag":109,"props":16298,"children":16299},{"style":2759},[16300],{"type":30,"value":12334},{"type":25,"tag":109,"props":16302,"children":16303},{"style":2764},[16304],{"type":30,"value":16000},{"type":25,"tag":109,"props":16306,"children":16307},{"style":7698},[16308],{"type":30,"value":7701},{"type":25,"tag":109,"props":16310,"children":16311},{"style":2759},[16312],{"type":30,"value":1290},{"type":25,"tag":109,"props":16314,"children":16315},{"style":2764},[16316],{"type":30,"value":16317},"n-step__line",{"type":25,"tag":109,"props":16319,"children":16320},{"style":116},[16321],{"type":30,"value":1794},{"type":25,"tag":109,"props":16323,"children":16324},{"style":293},[16325],{"type":30,"value":296},{"type":25,"tag":109,"props":16327,"children":16329},{"class":111,"line":16328},202,[16330,16334,16338,16343,16347,16352,16357,16361,16365,16370,16374,16378,16382],{"type":25,"tag":109,"props":16331,"children":16332},{"style":2778},[16333],{"type":30,"value":7649},{"type":25,"tag":109,"props":16335,"children":16336},{"style":293},[16337],{"type":30,"value":310},{"type":25,"tag":109,"props":16339,"children":16340},{"style":12368},[16341],{"type":30,"value":16342}," linear-gradient",{"type":25,"tag":109,"props":16344,"children":16345},{"style":293},[16346],{"type":30,"value":290},{"type":25,"tag":109,"props":16348,"children":16349},{"style":1034},[16350],{"type":30,"value":16351},"90",{"type":25,"tag":109,"props":16353,"children":16354},{"style":2892},[16355],{"type":30,"value":16356},"deg",{"type":25,"tag":109,"props":16358,"children":16359},{"style":293},[16360],{"type":30,"value":1003},{"type":25,"tag":109,"props":16362,"children":16363},{"style":2759},[16364],{"type":30,"value":7658},{"type":25,"tag":109,"props":16366,"children":16367},{"style":2788},[16368],{"type":30,"value":16369},"1f2937",{"type":25,"tag":109,"props":16371,"children":16372},{"style":293},[16373],{"type":30,"value":1003},{"type":25,"tag":109,"props":16375,"children":16376},{"style":2759},[16377],{"type":30,"value":7658},{"type":25,"tag":109,"props":16379,"children":16380},{"style":2788},[16381],{"type":30,"value":16240},{"type":25,"tag":109,"props":16383,"children":16384},{"style":293},[16385],{"type":30,"value":12412},{"type":25,"tag":109,"props":16387,"children":16389},{"class":111,"line":16388},203,[16390],{"type":25,"tag":109,"props":16391,"children":16392},{"style":293},[16393],{"type":30,"value":1957},{"type":25,"tag":109,"props":16395,"children":16397},{"class":111,"line":16396},204,[16398],{"type":25,"tag":109,"props":16399,"children":16400},{"emptyLinePlaceholder":599},[16401],{"type":30,"value":602},{"type":25,"tag":109,"props":16403,"children":16405},{"class":111,"line":16404},205,[16406,16410,16414,16418,16422,16426,16430,16435,16439,16443,16447],{"type":25,"tag":109,"props":16407,"children":16408},{"style":2759},[16409],{"type":30,"value":1290},{"type":25,"tag":109,"props":16411,"children":16412},{"style":2764},[16413],{"type":30,"value":12329},{"type":25,"tag":109,"props":16415,"children":16416},{"style":2759},[16417],{"type":30,"value":12334},{"type":25,"tag":109,"props":16419,"children":16420},{"style":2764},[16421],{"type":30,"value":16000},{"type":25,"tag":109,"props":16423,"children":16424},{"style":7698},[16425],{"type":30,"value":7701},{"type":25,"tag":109,"props":16427,"children":16428},{"style":2759},[16429],{"type":30,"value":1290},{"type":25,"tag":109,"props":16431,"children":16432},{"style":2764},[16433],{"type":30,"value":16434},"n-step--process",{"type":25,"tag":109,"props":16436,"children":16437},{"style":2759},[16438],{"type":30,"value":12334},{"type":25,"tag":109,"props":16440,"children":16441},{"style":2764},[16442],{"type":30,"value":16174},{"type":25,"tag":109,"props":16444,"children":16445},{"style":116},[16446],{"type":30,"value":1794},{"type":25,"tag":109,"props":16448,"children":16449},{"style":293},[16450],{"type":30,"value":296},{"type":25,"tag":109,"props":16452,"children":16454},{"class":111,"line":16453},206,[16455,16459,16463,16467,16472],{"type":25,"tag":109,"props":16456,"children":16457},{"style":2778},[16458],{"type":30,"value":7649},{"type":25,"tag":109,"props":16460,"children":16461},{"style":293},[16462],{"type":30,"value":310},{"type":25,"tag":109,"props":16464,"children":16465},{"style":2759},[16466],{"type":30,"value":7658},{"type":25,"tag":109,"props":16468,"children":16469},{"style":2788},[16470],{"type":30,"value":16471},"0b1220",{"type":25,"tag":109,"props":16473,"children":16474},{"style":293},[16475],{"type":30,"value":2796},{"type":25,"tag":109,"props":16477,"children":16479},{"class":111,"line":16478},207,[16480,16484,16488,16492,16497],{"type":25,"tag":109,"props":16481,"children":16482},{"style":2778},[16483],{"type":30,"value":12361},{"type":25,"tag":109,"props":16485,"children":16486},{"style":293},[16487],{"type":30,"value":310},{"type":25,"tag":109,"props":16489,"children":16490},{"style":2759},[16491],{"type":30,"value":7658},{"type":25,"tag":109,"props":16493,"children":16494},{"style":2788},[16495],{"type":30,"value":16496},"38bdf8",{"type":25,"tag":109,"props":16498,"children":16499},{"style":293},[16500],{"type":30,"value":2796},{"type":25,"tag":109,"props":16502,"children":16504},{"class":111,"line":16503},208,[16505,16509,16513,16517,16522],{"type":25,"tag":109,"props":16506,"children":16507},{"style":2778},[16508],{"type":30,"value":16029},{"type":25,"tag":109,"props":16510,"children":16511},{"style":293},[16512],{"type":30,"value":310},{"type":25,"tag":109,"props":16514,"children":16515},{"style":2759},[16516],{"type":30,"value":7658},{"type":25,"tag":109,"props":16518,"children":16519},{"style":2788},[16520],{"type":30,"value":16521},"e0f2fe",{"type":25,"tag":109,"props":16523,"children":16524},{"style":293},[16525],{"type":30,"value":2796},{"type":25,"tag":109,"props":16527,"children":16529},{"class":111,"line":16528},209,[16530],{"type":25,"tag":109,"props":16531,"children":16532},{"style":293},[16533],{"type":30,"value":1957},{"type":25,"tag":109,"props":16535,"children":16537},{"class":111,"line":16536},210,[16538],{"type":25,"tag":109,"props":16539,"children":16540},{"emptyLinePlaceholder":599},[16541],{"type":30,"value":602},{"type":25,"tag":109,"props":16543,"children":16545},{"class":111,"line":16544},211,[16546,16550,16554,16558,16562,16566,16570,16575,16579,16583,16587],{"type":25,"tag":109,"props":16547,"children":16548},{"style":2759},[16549],{"type":30,"value":1290},{"type":25,"tag":109,"props":16551,"children":16552},{"style":2764},[16553],{"type":30,"value":12329},{"type":25,"tag":109,"props":16555,"children":16556},{"style":2759},[16557],{"type":30,"value":12334},{"type":25,"tag":109,"props":16559,"children":16560},{"style":2764},[16561],{"type":30,"value":16000},{"type":25,"tag":109,"props":16563,"children":16564},{"style":7698},[16565],{"type":30,"value":7701},{"type":25,"tag":109,"props":16567,"children":16568},{"style":2759},[16569],{"type":30,"value":1290},{"type":25,"tag":109,"props":16571,"children":16572},{"style":2764},[16573],{"type":30,"value":16574},"n-step--finish",{"type":25,"tag":109,"props":16576,"children":16577},{"style":2759},[16578],{"type":30,"value":12334},{"type":25,"tag":109,"props":16580,"children":16581},{"style":2764},[16582],{"type":30,"value":16174},{"type":25,"tag":109,"props":16584,"children":16585},{"style":116},[16586],{"type":30,"value":1794},{"type":25,"tag":109,"props":16588,"children":16589},{"style":293},[16590],{"type":30,"value":296},{"type":25,"tag":109,"props":16592,"children":16594},{"class":111,"line":16593},212,[16595,16599,16603,16607,16612],{"type":25,"tag":109,"props":16596,"children":16597},{"style":2778},[16598],{"type":30,"value":7649},{"type":25,"tag":109,"props":16600,"children":16601},{"style":293},[16602],{"type":30,"value":310},{"type":25,"tag":109,"props":16604,"children":16605},{"style":2759},[16606],{"type":30,"value":7658},{"type":25,"tag":109,"props":16608,"children":16609},{"style":2788},[16610],{"type":30,"value":16611},"052e2b",{"type":25,"tag":109,"props":16613,"children":16614},{"style":293},[16615],{"type":30,"value":2796},{"type":25,"tag":109,"props":16617,"children":16619},{"class":111,"line":16618},213,[16620,16624,16628,16632,16637],{"type":25,"tag":109,"props":16621,"children":16622},{"style":2778},[16623],{"type":30,"value":12361},{"type":25,"tag":109,"props":16625,"children":16626},{"style":293},[16627],{"type":30,"value":310},{"type":25,"tag":109,"props":16629,"children":16630},{"style":2759},[16631],{"type":30,"value":7658},{"type":25,"tag":109,"props":16633,"children":16634},{"style":2788},[16635],{"type":30,"value":16636},"34d399",{"type":25,"tag":109,"props":16638,"children":16639},{"style":293},[16640],{"type":30,"value":2796},{"type":25,"tag":109,"props":16642,"children":16644},{"class":111,"line":16643},214,[16645,16649,16653,16657,16662],{"type":25,"tag":109,"props":16646,"children":16647},{"style":2778},[16648],{"type":30,"value":16029},{"type":25,"tag":109,"props":16650,"children":16651},{"style":293},[16652],{"type":30,"value":310},{"type":25,"tag":109,"props":16654,"children":16655},{"style":2759},[16656],{"type":30,"value":7658},{"type":25,"tag":109,"props":16658,"children":16659},{"style":2788},[16660],{"type":30,"value":16661},"d1fae5",{"type":25,"tag":109,"props":16663,"children":16664},{"style":293},[16665],{"type":30,"value":2796},{"type":25,"tag":109,"props":16667,"children":16669},{"class":111,"line":16668},215,[16670],{"type":25,"tag":109,"props":16671,"children":16672},{"style":293},[16673],{"type":30,"value":1957},{"type":25,"tag":109,"props":16675,"children":16677},{"class":111,"line":16676},216,[16678],{"type":25,"tag":109,"props":16679,"children":16680},{"emptyLinePlaceholder":599},[16681],{"type":30,"value":602},{"type":25,"tag":109,"props":16683,"children":16685},{"class":111,"line":16684},217,[16686,16690,16694,16698,16702,16706,16710,16715,16719,16723,16727],{"type":25,"tag":109,"props":16687,"children":16688},{"style":2759},[16689],{"type":30,"value":1290},{"type":25,"tag":109,"props":16691,"children":16692},{"style":2764},[16693],{"type":30,"value":12329},{"type":25,"tag":109,"props":16695,"children":16696},{"style":2759},[16697],{"type":30,"value":12334},{"type":25,"tag":109,"props":16699,"children":16700},{"style":2764},[16701],{"type":30,"value":16000},{"type":25,"tag":109,"props":16703,"children":16704},{"style":7698},[16705],{"type":30,"value":7701},{"type":25,"tag":109,"props":16707,"children":16708},{"style":2759},[16709],{"type":30,"value":1290},{"type":25,"tag":109,"props":16711,"children":16712},{"style":2764},[16713],{"type":30,"value":16714},"n-step--error",{"type":25,"tag":109,"props":16716,"children":16717},{"style":2759},[16718],{"type":30,"value":12334},{"type":25,"tag":109,"props":16720,"children":16721},{"style":2764},[16722],{"type":30,"value":16174},{"type":25,"tag":109,"props":16724,"children":16725},{"style":116},[16726],{"type":30,"value":1794},{"type":25,"tag":109,"props":16728,"children":16729},{"style":293},[16730],{"type":30,"value":296},{"type":25,"tag":109,"props":16732,"children":16734},{"class":111,"line":16733},218,[16735,16739,16743,16747,16752],{"type":25,"tag":109,"props":16736,"children":16737},{"style":2778},[16738],{"type":30,"value":7649},{"type":25,"tag":109,"props":16740,"children":16741},{"style":293},[16742],{"type":30,"value":310},{"type":25,"tag":109,"props":16744,"children":16745},{"style":2759},[16746],{"type":30,"value":7658},{"type":25,"tag":109,"props":16748,"children":16749},{"style":2788},[16750],{"type":30,"value":16751},"3b1d2a",{"type":25,"tag":109,"props":16753,"children":16754},{"style":293},[16755],{"type":30,"value":2796},{"type":25,"tag":109,"props":16757,"children":16759},{"class":111,"line":16758},219,[16760,16764,16768,16772,16777],{"type":25,"tag":109,"props":16761,"children":16762},{"style":2778},[16763],{"type":30,"value":12361},{"type":25,"tag":109,"props":16765,"children":16766},{"style":293},[16767],{"type":30,"value":310},{"type":25,"tag":109,"props":16769,"children":16770},{"style":2759},[16771],{"type":30,"value":7658},{"type":25,"tag":109,"props":16773,"children":16774},{"style":2788},[16775],{"type":30,"value":16776},"f87171",{"type":25,"tag":109,"props":16778,"children":16779},{"style":293},[16780],{"type":30,"value":2796},{"type":25,"tag":109,"props":16782,"children":16784},{"class":111,"line":16783},220,[16785,16789,16793,16797,16802],{"type":25,"tag":109,"props":16786,"children":16787},{"style":2778},[16788],{"type":30,"value":16029},{"type":25,"tag":109,"props":16790,"children":16791},{"style":293},[16792],{"type":30,"value":310},{"type":25,"tag":109,"props":16794,"children":16795},{"style":2759},[16796],{"type":30,"value":7658},{"type":25,"tag":109,"props":16798,"children":16799},{"style":2788},[16800],{"type":30,"value":16801},"fecaca",{"type":25,"tag":109,"props":16803,"children":16804},{"style":293},[16805],{"type":30,"value":2796},{"type":25,"tag":109,"props":16807,"children":16809},{"class":111,"line":16808},221,[16810],{"type":25,"tag":109,"props":16811,"children":16812},{"style":293},[16813],{"type":30,"value":1957},{"type":25,"tag":109,"props":16815,"children":16817},{"class":111,"line":16816},222,[16818],{"type":25,"tag":109,"props":16819,"children":16820},{"emptyLinePlaceholder":599},[16821],{"type":30,"value":602},{"type":25,"tag":109,"props":16823,"children":16825},{"class":111,"line":16824},223,[16826,16830,16834,16838,16842,16846,16850,16854,16858,16862,16866],{"type":25,"tag":109,"props":16827,"children":16828},{"style":2759},[16829],{"type":30,"value":1290},{"type":25,"tag":109,"props":16831,"children":16832},{"style":2764},[16833],{"type":30,"value":12329},{"type":25,"tag":109,"props":16835,"children":16836},{"style":2759},[16837],{"type":30,"value":12334},{"type":25,"tag":109,"props":16839,"children":16840},{"style":2764},[16841],{"type":30,"value":16000},{"type":25,"tag":109,"props":16843,"children":16844},{"style":7698},[16845],{"type":30,"value":7701},{"type":25,"tag":109,"props":16847,"children":16848},{"style":2759},[16849],{"type":30,"value":1290},{"type":25,"tag":109,"props":16851,"children":16852},{"style":2764},[16853],{"type":30,"value":16574},{"type":25,"tag":109,"props":16855,"children":16856},{"style":2759},[16857],{"type":30,"value":12334},{"type":25,"tag":109,"props":16859,"children":16860},{"style":2764},[16861],{"type":30,"value":16317},{"type":25,"tag":109,"props":16863,"children":16864},{"style":116},[16865],{"type":30,"value":1794},{"type":25,"tag":109,"props":16867,"children":16868},{"style":293},[16869],{"type":30,"value":296},{"type":25,"tag":109,"props":16871,"children":16873},{"class":111,"line":16872},224,[16874,16878,16882,16886,16890,16894,16898,16902,16906,16911,16915,16919,16923],{"type":25,"tag":109,"props":16875,"children":16876},{"style":2778},[16877],{"type":30,"value":7649},{"type":25,"tag":109,"props":16879,"children":16880},{"style":293},[16881],{"type":30,"value":310},{"type":25,"tag":109,"props":16883,"children":16884},{"style":12368},[16885],{"type":30,"value":16342},{"type":25,"tag":109,"props":16887,"children":16888},{"style":293},[16889],{"type":30,"value":290},{"type":25,"tag":109,"props":16891,"children":16892},{"style":1034},[16893],{"type":30,"value":16351},{"type":25,"tag":109,"props":16895,"children":16896},{"style":2892},[16897],{"type":30,"value":16356},{"type":25,"tag":109,"props":16899,"children":16900},{"style":293},[16901],{"type":30,"value":1003},{"type":25,"tag":109,"props":16903,"children":16904},{"style":2759},[16905],{"type":30,"value":7658},{"type":25,"tag":109,"props":16907,"children":16908},{"style":2788},[16909],{"type":30,"value":16910},"10b981",{"type":25,"tag":109,"props":16912,"children":16913},{"style":293},[16914],{"type":30,"value":1003},{"type":25,"tag":109,"props":16916,"children":16917},{"style":2759},[16918],{"type":30,"value":7658},{"type":25,"tag":109,"props":16920,"children":16921},{"style":2788},[16922],{"type":30,"value":16636},{"type":25,"tag":109,"props":16924,"children":16925},{"style":293},[16926],{"type":30,"value":12412},{"type":25,"tag":109,"props":16928,"children":16930},{"class":111,"line":16929},225,[16931],{"type":25,"tag":109,"props":16932,"children":16933},{"style":293},[16934],{"type":30,"value":1957},{"type":25,"tag":109,"props":16936,"children":16938},{"class":111,"line":16937},226,[16939],{"type":25,"tag":109,"props":16940,"children":16941},{"emptyLinePlaceholder":599},[16942],{"type":30,"value":602},{"type":25,"tag":109,"props":16944,"children":16946},{"class":111,"line":16945},227,[16947,16951,16955,16959,16963,16967,16971,16975,16979,16983,16987],{"type":25,"tag":109,"props":16948,"children":16949},{"style":2759},[16950],{"type":30,"value":1290},{"type":25,"tag":109,"props":16952,"children":16953},{"style":2764},[16954],{"type":30,"value":12329},{"type":25,"tag":109,"props":16956,"children":16957},{"style":2759},[16958],{"type":30,"value":12334},{"type":25,"tag":109,"props":16960,"children":16961},{"style":2764},[16962],{"type":30,"value":16000},{"type":25,"tag":109,"props":16964,"children":16965},{"style":7698},[16966],{"type":30,"value":7701},{"type":25,"tag":109,"props":16968,"children":16969},{"style":2759},[16970],{"type":30,"value":1290},{"type":25,"tag":109,"props":16972,"children":16973},{"style":2764},[16974],{"type":30,"value":16434},{"type":25,"tag":109,"props":16976,"children":16977},{"style":2759},[16978],{"type":30,"value":12334},{"type":25,"tag":109,"props":16980,"children":16981},{"style":2764},[16982],{"type":30,"value":16317},{"type":25,"tag":109,"props":16984,"children":16985},{"style":116},[16986],{"type":30,"value":1794},{"type":25,"tag":109,"props":16988,"children":16989},{"style":293},[16990],{"type":30,"value":296},{"type":25,"tag":109,"props":16992,"children":16994},{"class":111,"line":16993},228,[16995,16999,17003,17007,17011,17015,17019,17023,17027,17031,17035,17039,17044],{"type":25,"tag":109,"props":16996,"children":16997},{"style":2778},[16998],{"type":30,"value":7649},{"type":25,"tag":109,"props":17000,"children":17001},{"style":293},[17002],{"type":30,"value":310},{"type":25,"tag":109,"props":17004,"children":17005},{"style":12368},[17006],{"type":30,"value":16342},{"type":25,"tag":109,"props":17008,"children":17009},{"style":293},[17010],{"type":30,"value":290},{"type":25,"tag":109,"props":17012,"children":17013},{"style":1034},[17014],{"type":30,"value":16351},{"type":25,"tag":109,"props":17016,"children":17017},{"style":2892},[17018],{"type":30,"value":16356},{"type":25,"tag":109,"props":17020,"children":17021},{"style":293},[17022],{"type":30,"value":1003},{"type":25,"tag":109,"props":17024,"children":17025},{"style":2759},[17026],{"type":30,"value":7658},{"type":25,"tag":109,"props":17028,"children":17029},{"style":2788},[17030],{"type":30,"value":16496},{"type":25,"tag":109,"props":17032,"children":17033},{"style":293},[17034],{"type":30,"value":1003},{"type":25,"tag":109,"props":17036,"children":17037},{"style":2759},[17038],{"type":30,"value":7658},{"type":25,"tag":109,"props":17040,"children":17041},{"style":2788},[17042],{"type":30,"value":17043},"0ea5e9",{"type":25,"tag":109,"props":17045,"children":17046},{"style":293},[17047],{"type":30,"value":12412},{"type":25,"tag":109,"props":17049,"children":17051},{"class":111,"line":17050},229,[17052],{"type":25,"tag":109,"props":17053,"children":17054},{"style":293},[17055],{"type":30,"value":1957},{"type":25,"tag":109,"props":17057,"children":17059},{"class":111,"line":17058},230,[17060],{"type":25,"tag":109,"props":17061,"children":17062},{"emptyLinePlaceholder":599},[17063],{"type":30,"value":602},{"type":25,"tag":109,"props":17065,"children":17067},{"class":111,"line":17066},231,[17068,17072,17076,17080,17084,17088,17092,17096,17100,17104,17108],{"type":25,"tag":109,"props":17069,"children":17070},{"style":2759},[17071],{"type":30,"value":1290},{"type":25,"tag":109,"props":17073,"children":17074},{"style":2764},[17075],{"type":30,"value":12329},{"type":25,"tag":109,"props":17077,"children":17078},{"style":2759},[17079],{"type":30,"value":12334},{"type":25,"tag":109,"props":17081,"children":17082},{"style":2764},[17083],{"type":30,"value":16000},{"type":25,"tag":109,"props":17085,"children":17086},{"style":7698},[17087],{"type":30,"value":7701},{"type":25,"tag":109,"props":17089,"children":17090},{"style":2759},[17091],{"type":30,"value":1290},{"type":25,"tag":109,"props":17093,"children":17094},{"style":2764},[17095],{"type":30,"value":16714},{"type":25,"tag":109,"props":17097,"children":17098},{"style":2759},[17099],{"type":30,"value":12334},{"type":25,"tag":109,"props":17101,"children":17102},{"style":2764},[17103],{"type":30,"value":16317},{"type":25,"tag":109,"props":17105,"children":17106},{"style":116},[17107],{"type":30,"value":1794},{"type":25,"tag":109,"props":17109,"children":17110},{"style":293},[17111],{"type":30,"value":296},{"type":25,"tag":109,"props":17113,"children":17115},{"class":111,"line":17114},232,[17116,17120,17124,17128,17132,17136,17140,17144,17148,17152,17156,17160,17165],{"type":25,"tag":109,"props":17117,"children":17118},{"style":2778},[17119],{"type":30,"value":7649},{"type":25,"tag":109,"props":17121,"children":17122},{"style":293},[17123],{"type":30,"value":310},{"type":25,"tag":109,"props":17125,"children":17126},{"style":12368},[17127],{"type":30,"value":16342},{"type":25,"tag":109,"props":17129,"children":17130},{"style":293},[17131],{"type":30,"value":290},{"type":25,"tag":109,"props":17133,"children":17134},{"style":1034},[17135],{"type":30,"value":16351},{"type":25,"tag":109,"props":17137,"children":17138},{"style":2892},[17139],{"type":30,"value":16356},{"type":25,"tag":109,"props":17141,"children":17142},{"style":293},[17143],{"type":30,"value":1003},{"type":25,"tag":109,"props":17145,"children":17146},{"style":2759},[17147],{"type":30,"value":7658},{"type":25,"tag":109,"props":17149,"children":17150},{"style":2788},[17151],{"type":30,"value":16776},{"type":25,"tag":109,"props":17153,"children":17154},{"style":293},[17155],{"type":30,"value":1003},{"type":25,"tag":109,"props":17157,"children":17158},{"style":2759},[17159],{"type":30,"value":7658},{"type":25,"tag":109,"props":17161,"children":17162},{"style":2788},[17163],{"type":30,"value":17164},"ef4444",{"type":25,"tag":109,"props":17166,"children":17167},{"style":293},[17168],{"type":30,"value":12412},{"type":25,"tag":109,"props":17170,"children":17172},{"class":111,"line":17171},233,[17173],{"type":25,"tag":109,"props":17174,"children":17175},{"style":293},[17176],{"type":30,"value":1957},{"type":25,"tag":109,"props":17178,"children":17180},{"class":111,"line":17179},234,[17181],{"type":25,"tag":109,"props":17182,"children":17183},{"emptyLinePlaceholder":599},[17184],{"type":30,"value":602},{"type":25,"tag":109,"props":17186,"children":17188},{"class":111,"line":17187},235,[17189,17194,17198,17204,17208,17213,17217,17221],{"type":25,"tag":109,"props":17190,"children":17191},{"style":271},[17192],{"type":30,"value":17193},"@media",{"type":25,"tag":109,"props":17195,"children":17196},{"style":293},[17197],{"type":30,"value":1215},{"type":25,"tag":109,"props":17199,"children":17201},{"style":17200},"--shiki-default:#FFCB6B;--shiki-dark:#ABB2BF",[17202],{"type":30,"value":17203},"max-width",{"type":25,"tag":109,"props":17205,"children":17206},{"style":293},[17207],{"type":30,"value":310},{"type":25,"tag":109,"props":17209,"children":17210},{"style":1034},[17211],{"type":30,"value":17212}," 640",{"type":25,"tag":109,"props":17214,"children":17215},{"style":2892},[17216],{"type":30,"value":12493},{"type":25,"tag":109,"props":17218,"children":17219},{"style":293},[17220],{"type":30,"value":1226},{"type":25,"tag":109,"props":17222,"children":17223},{"style":293},[17224],{"type":30,"value":975},{"type":25,"tag":109,"props":17226,"children":17228},{"class":111,"line":17227},236,[17229,17234,17239],{"type":25,"tag":109,"props":17230,"children":17231},{"style":2759},[17232],{"type":30,"value":17233},"  .",{"type":25,"tag":109,"props":17235,"children":17236},{"style":2764},[17237],{"type":30,"value":17238},"steps-controls",{"type":25,"tag":109,"props":17240,"children":17241},{"style":293},[17242],{"type":30,"value":975},{"type":25,"tag":109,"props":17244,"children":17246},{"class":111,"line":17245},237,[17247,17252,17256,17260],{"type":25,"tag":109,"props":17248,"children":17249},{"style":2778},[17250],{"type":30,"value":17251},"    justify-content",{"type":25,"tag":109,"props":17253,"children":17254},{"style":293},[17255],{"type":30,"value":310},{"type":25,"tag":109,"props":17257,"children":17258},{"style":2788},[17259],{"type":30,"value":2867},{"type":25,"tag":109,"props":17261,"children":17262},{"style":293},[17263],{"type":30,"value":2796},{"type":25,"tag":109,"props":17265,"children":17267},{"class":111,"line":17266},238,[17268],{"type":25,"tag":109,"props":17269,"children":17270},{"style":293},[17271],{"type":30,"value":1503},{"type":25,"tag":109,"props":17273,"children":17275},{"class":111,"line":17274},239,[17276],{"type":25,"tag":109,"props":17277,"children":17278},{"style":293},[17279],{"type":30,"value":1957},{"type":25,"tag":109,"props":17281,"children":17283},{"class":111,"line":17282},240,[17284,17288,17292],{"type":25,"tag":109,"props":17285,"children":17286},{"style":293},[17287],{"type":30,"value":876},{"type":25,"tag":109,"props":17289,"children":17290},{"style":302},[17291],{"type":30,"value":2744},{"type":25,"tag":109,"props":17293,"children":17294},{"style":293},[17295],{"type":30,"value":427},{"type":25,"tag":2744,"props":17297,"children":17298},{},[17299],{"type":30,"value":17300},"html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":19,"searchDepth":509,"depth":509,"links":17302},[17303,17306,17307,17311,17316,17317,17318],{"id":56,"depth":122,"text":59,"children":17304},[17305],{"id":89,"depth":152,"text":89},{"id":196,"depth":122,"text":199},{"id":354,"depth":122,"text":357,"children":17308},[17309,17310],{"id":381,"depth":152,"text":384},{"id":3313,"depth":152,"text":3316},{"id":3413,"depth":122,"text":3416,"children":17312},[17313,17314,17315],{"id":3431,"depth":152,"text":3434},{"id":3492,"depth":152,"text":3495},{"id":3600,"depth":152,"text":3603},{"id":3837,"depth":122,"text":3840},{"id":3910,"depth":122,"text":3910},{"id":3925,"depth":122,"text":3925},1776415020894]