mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:20:11 +00:00
959 B
959 B
title, sidebar_position
| title | sidebar_position |
|---|---|
| init - 初始化 API | 0 |
@since v1.0.0
模块简介
提供 init 等方法
方法
init
初始化引擎
方法定义
function init(container?: Element, options?: IPublicTypeEngineOptions): void
使用示例
import { init } from '@alilc/lowcode-engine';
init(document.getElementById('engine'), {
enableCondition: false,
});
默认打开移动端画布
import { init } from '@alilc/lowcode-engine';
init({
device: 'mobile',
});
使用 utils 第三方工具扩展
import { init } from '@alilc/lowcode-engine';
init({
device: 'mobile',
appHelper: {
utils: {
xxx: () => {console.log('123')},
}
}
});
