title |
nav |
group |
Markdown 编辑器 |
|
order |
title |
path |
1 |
Components - 组件 |
/client/components |
|
Markdown 编辑器
代码演示
Markdown 编辑器
import React from 'react';
import { SchemaRenderer } from '../';
const schema = {
type: 'object',
properties: {
input: {
interface: 'string',
type: 'string',
title: `编辑模式`,
name: 'name1',
'x-decorator': 'FormItem',
'x-component': 'Markdown',
'x-reactions': {
target: '*(read1,read2)',
fulfill: {
state: {
value: '{{$self.value}}',
},
},
},
},
read1: {
interface: 'string',
type: 'string',
title: `阅读模式`,
'x-read-pretty': true,
'x-decorator': 'FormItem',
'x-component': 'Markdown',
},
read2: {
interface: 'string',
type: 'string',
title: `阅读模式(超出隐藏)`,
'x-read-pretty': true,
'x-decorator': 'FormItem',
'x-component': 'Markdown',
'x-component-props': {
ellipsis: true,
},
},
},
};
export default () => {
return (
<SchemaRenderer schema={schema} />
);
};