Skip to content

测试

js
/**
 * @type {import('vitepress').UserConfig}
 */
const config = {
	// ...
};

export default config;
ts
import type { UserConfig } from "vitepress";

const config: UserConfig = {
	// ...
};

export default config;

Attributes

参数说明类型可选值默认值
visible是否展示booleantrue / falsenormal
ok确认触发函数function()=>{}
cancel取消触发函数function()=>{}