mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-13 09:41:57 +00:00
- @ali/lowcode-demo@0.8.39 - @ali/lowcode-designer@0.9.29 - @ali/lowcode-editor-preset-general@0.9.14 - @ali/lowcode-editor-preset-vision@0.8.30 - @ali/lowcode-editor-skeleton@0.8.35 - @ali/lowcode-plugin-components-pane@0.8.31 - @ali/lowcode-plugin-designer@0.9.29 - @ali/lowcode-plugin-outline-pane@0.8.35 - @ali/lowcode-plugin-sample-preview@0.8.33 - @ali/lowcode-plugin-undo-redo@0.8.33 - @ali/lowcode-rax-renderer@0.1.5 - @ali/lowcode-rax-simulator-renderer@0.8.32 - @ali/lowcode-react-simulator-renderer@0.8.35
Rax Renderer
Rax 渲染模块。
安装
$ npm install @ali/lowcode-engine-rax-renderer --save
使用
import { createElement, render } from 'rax';
import DriverUniversal from 'driver-universal';
import RaxRenderer from '@ali/lowcode-engine-rax-renderer';
const components = {
View,
Text
};
const schema = {
componentName: 'Page',
fileName: 'home',
children: [
{
componentName: 'View',
children: [
{
componentName: 'Text',
props: {
type: 'primary'
},
children: ['Welcome to Your Rax App']
}
]
}
]
};
render(
<RaxRenderer
schema={schema}
components={components}
/>,
document.getElementById('root'), { driver: DriverUniversal }
);