⭐ 欢迎使用 fe-lce 系列 lowcode-engine 低代码引擎! ⭐ 如有有任何疑问,可以查询添加 wx: kunsile-002 与我沟通!
- outline (大纲树)插件从lowcode-engine中迁移到 plugins 中,单独注册使用
- engine-ext 建议在项目中直接导入使用,不再external
vite.config.ts 配置如下,以正确解析路径
resolve: {
alias: {
'~@alifd': '@alifd',
},
},如果需要使用 @alilc 的包,在 vite.config.ts 配置中添加如下配置
{
resolve: {
alias: {
'@alilc/lowcode-engine': '@felce/lowcode-engine',
'@alilc/lowcode-types': '@felce/lowcode-types',
'@alilc/lowcode-utils': '@felce/lowcode-utils',
'@alilc/lowcode-shell': '@felce/lowcode-shell',
'@alilc/lowcode-designer': '@felce/lowcode-designer',
'@alilc/lowcode-editor-core': '@felce/lowcode-core',
'@alilc/lowcode-editor-skeleton': '@felce/lowcode-skeleton',
}
}
}插件使用暂时参考lowcode-plugins包中已发布插件的注册方式,文档后续补充
| 工具名称 | 版本 | 描述 |
|---|---|---|
| @felce/lowcode-engine | 引擎核心 | |
| @felce/lowcode-engine-ext | 引擎设置器集 | |
| @felce/lowcode-react-renderer-core | React 渲染器核心 | |
| @felce/lowcode-react-renderer | React 渲染器 | |
| @felce/lowcode-react-simulator-renderer | React 渲染器画布 | |
| @felce/lowcode-react-code-generator | React 出码模块 | |
| @felce/lowcode-react-material-parser | React 物料解析器 | |
| @felce/lowcode-vue-renderer-core | Vue 渲染器核心 | |
| @felce/lowcode-vue-renderer | Vue 渲染器 | |
| @felce/lowcode-vue-simulator-renderer | Vue 渲染器画布 | |
| @felce/lowcode-vue-material-parser | Vue 物料解析器 |
插件请配合felce系列食用(未提供 npm 版本的,是暂未支持的插件)
| 插件名称 | 版本 | 说明 |
|---|---|---|
| plugin-designer | 设计面板视图 | |
| plugin-command | 常用命令 | |
| plugin-outline-pane | 大纲树面板 | |
| plugin-datasource-pane | 数据源面板 | |
| plugin-schema | schema 源码 | |
| plugin-components-pane | 组件面板 | |
| plugin-view-manager-pane | 视图管理面板 | |
| plugin-multiple-editor | 多文件编辑器 | |
| plugin-undo-redo | 撤销 重做 | |
| plugin-simulator-select | 画布大小 | |
| plugin-zh-en | 多语言 | |
| plugin-resource-tabs | 资源管理面板 | |
| plugin-code-editor | 代码编辑 | |
| plugin-vue-code-editor | 代码编辑 vue版本 | |
| plugin-set-ref-prop | 组件 ref 属性设置 | |
| plugin-manual | 使用手册 | |
| plugin-inject | 插件注入 |