# PopupMatchIntro 参赛必读
# 引入
import PressGpPopupMatchIntro from '@tencent/press-next/press-gp-popup-match-intro/press-gp-popup-match-intro';
# 代码演示
# 基础用法
# API
# Props
interface Props {
childInfo?: Record<string, any>;
siteInfo?: Record<string, any>;
signTeamMinMem?: string | number;
curJoinType?: string | number;
groupQRCode?: string;
isKnockoutMatch?: boolean;
show: boolean;
qrCodeVal?: string;
timeStampFormat?: (time: number, format: string) => string | void;
openLocationInUni?: (info: any) => any;
}
const props = withDefaults(defineProps<Props>(), {
childInfo: () => ({}),
siteInfo: () => ({}),
signTeamMinMem: 1,
curJoinType: 0,
groupQRCode: '',
isKnockoutMatch: false,
show: false,
qrCodeVal: '',
timeStampFormat: () => noop,
openLocationInUni: () => noop,
});
# Events
const emits = defineEmits<{
close: [];
jumpToRulePage: [];
gotoMap: [];
}>();