# GpDialogCertification 实名认证
# 引入
import PressGpDialogCertification from '@tencent/press-next/press-gp-dialog-certification/press-gp-dialog-certification';
# 代码演示
# 基础用法
# API
# Props
interface Props {
show?: boolean;
zIndex?: number
}
withDefaults(defineProps<Props>(), {
show: false,
zIndex: 100,
});
# Events
const emits = defineEmits<{
close: [];
confirm: [info: {
name: string;
code: string;
}]
}>();