amis/examples/components/Form/RichText.jsx

22 lines
443 B
React
Raw Normal View History

2019-06-11 17:00:02 +08:00
import React from 'react';
2019-04-30 11:11:25 +08:00
export default {
2019-11-07 10:41:14 +08:00
$schema: 'https://houtai.baidu.com/v2/schemas/page.json#',
title: '富文本编辑器',
body: [
{
type: 'form',
api: '/api/mock2/saveForm?waitSeconds=2',
title: 'Form elements',
controls: [
2019-04-30 11:11:25 +08:00
{
2019-11-07 10:41:14 +08:00
name: 'html',
type: 'rich-text',
label: '富文本',
value: '<p>Just do <code>IT</code></p>'
2019-04-30 11:11:25 +08:00
}
2019-11-07 10:41:14 +08:00
]
}
]
2019-04-30 11:11:25 +08:00
};