# GpPopupPersonalSignupSuccess 个人报名成功
# 引入
import PressGpPopupPersonalSignupSuccess from '@tencent/press-next/press-gp-popup-personal-signup-success/press-gp-popup-personal-signup-success';
# 代码演示
# 基础用法
# API
# Props
interface Props {
head: string;
nick: string;
show?: boolean;
title?: string;
zIndex?: number;
groupQRCode?: string;
}
withDefaults(defineProps<Props>(), {
head: '',
nick: '',
show: false,
title: '',
zIndex: 100,
groupQRCode: '',
});
# Events
const emits = defineEmits<{
cancel: [];
confirm: [];
showQRcode: [];
}>();