mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-13 09:41:57 +00:00
- @ali/lowcode-demo@0.8.53 - @ali/lowcode-designer@0.9.43 - @ali/lowcode-editor-preset-general@0.9.28 - @ali/lowcode-editor-preset-vision@0.8.44 - @ali/lowcode-editor-skeleton@0.8.49 - @ali/lowcode-plugin-components-pane@0.8.45 - @ali/lowcode-plugin-designer@0.9.43 - @ali/lowcode-plugin-outline-pane@0.8.49 - @ali/lowcode-plugin-sample-preview@0.8.47 - @ali/lowcode-plugin-undo-redo@0.8.47 - @ali/lowcode-rax-renderer@0.1.7 - @ali/lowcode-rax-simulator-renderer@0.8.46 - @ali/lowcode-react-simulator-renderer@0.8.48
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 }
);