vitepress 可能没报错或警告, 以下是几种可能
1. 原生组件 和 vue 组件 冲突, 要提前在 vite.config.js 配置
js
import { defineConfig } from "vitepress";
// https://vitepress.dev/reference/site-config
export default defineConfig({
// .....
vue: {
template: {
compilerOptions: {
isCustomElement: (tag) =>
tag.includes(
"这里替换成自己组件的特征, 比如我的是 com-xxxx, 那么这里就填 com-"
),
},
},
},
});