We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01ce70c commit caffc0cCopy full SHA for caffc0c
packages/renderer-core/src/types/index.ts
@@ -98,10 +98,16 @@ export interface IRendererProps {
98
id?: string | number;
99
/** 语言 */
100
locale?: string;
101
+ /**
102
+ * 多语言语料
103
+ * 配置规范参见《低代码搭建组件描述协议》https://lowcode-engine.cn/lowcode 中 2.6 国际化多语言支持
104
+ * */
105
+ messages?: Record<string, any>;
106
/** 主要用于设置渲染模块的全局上下文,里面定义的内容可以在低代码中通过 this 来访问,比如 this.utils */
107
appHelper?: IRendererAppHelper;
108
/**
- * 配置规范参见《中后台搭建组件描述协议》,主要在搭建场景中使用,用于提升用户搭建体验。
109
+ * 配置规范参见《低代码搭建组件描述协议》https://lowcode-engine.cn/lowcode
110
+ * 主要在搭建场景中使用,用于提升用户搭建体验。
111
*
112
* > 在生产环境下不需要设置
113
*/
0 commit comments