@wesurvey/sdk
v0.0.1-alpha.1
Published
## 安装
Readme
@wesurvey/sdk
安装
ESM/CJS
安装
npm install @wesurvey/sdkimport { embedSystem } from '@wesurvey/sdk';
embedSystem({
// ...
});UMD
从 CDN 下载: https://unpkg.com/@wesurvey/[email protected]/dist/umd/index.js
window.wesurveySDK.embedSystem({
// ...
})函数
embedSystem
/**
* 将 wesurvey 系统 URL 嵌入到页面中
*/
export declare const embedSystem: (payload: {
/** 要嵌入的系统 URL */
url: string;
/**
* 容器元素
*
* HTMLElement 或 querySelector 字符串
*/
container: HTMLElement | string;
/** 自定义创建 iframe 元素 */
createElement?: () => HTMLIFrameElement;
}) => void;
开发
安装依赖:
pnpm install开始使用
构建库:
pnpm build以开发模式构建库:
pnpm dev