# GpPopupSignUpWay 选择报名方式
# 引入
import PressGpPopupSignUpWay from '@tencent/press-next/press-gp-popup-sign-up-way/press-gp-popup-sign-up-way';
# 代码演示
# 基础用法
# API
# Props
interface Props {
show?: boolean;
}
withDefaults(defineProps<Props>(), {
show: false,
});
# Events
const emits = defineEmits<{
close: [];
create: [];
join: [];
}>();