主题
测试
js
/**
* @type {import('vitepress').UserConfig}
*/
const config = {
// ...
};
export default config;
ts
import type { UserConfig } from "vitepress";
const config: UserConfig = {
// ...
};
export default config;
Attributes
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
visible | 是否展示 | boolean | true / false | normal |
ok | 确认触发函数 | function | ()=>{} | — |
cancel | 取消触发函数 | function | ()=>{} | — |