UNPKG

press-next

Version:

Vue3 组件库,支持 Composition API

30 lines (25 loc) 626 B
// demo-data/index.ts export interface SignQRCodeProps { /** 二维码图片地址 */ qrCodeUrl: string; /** 标题文字 */ title: string; /** 场地名称 */ venueName: string; /** 自定义类名 */ customClass?: string; } export function getMockData(): SignQRCodeProps { // 模拟数据 const componentProps: SignQRCodeProps = { qrCodeUrl: 'https://placehold.co/200x200/1e72ff/ffffff?text=QR+Code', title: '签到二维码', venueName: '网鱼网咖科兴路店', customClass: '', }; return componentProps; } const DEMO_DATA = { ...getMockData(), }; export default DEMO_DATA;