amis/examples/components/Form/RichText.jsx

22 lines
545 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-05-09 18:25:12 +08:00
$schema: "https://houtai.baidu.com/v2/schemas/page.json#",
2019-04-30 11:11:25 +08:00
title: "富文本编辑器",
body: [
{
type: "form",
api: "/api/mock2/saveForm?waitSeconds=2",
title: "Form elements",
controls: [
{
name: "html",
type: "rich-text",
label: "富文本",
value: "<p>Just do <code>IT</code></p>"
}
]
}
]
};