amis/examples/components/Form/Editor.jsx

47 lines
931 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
title: 'Editor',
body: [
{
type: 'form',
api: '/api/mock2/saveForm?waitSeconds=2',
title: '',
body: [
2019-04-30 11:11:25 +08:00
{
2019-11-07 10:41:14 +08:00
name: 'javascript',
type: 'editor',
label: 'Javascript',
language: 'javascript',
value: 'console.log(1, 2, 3);'
},
2019-04-30 11:11:25 +08:00
2019-11-07 10:41:14 +08:00
{
name: 'html',
type: 'editor',
language: 'html',
label: 'Html',
value:
'<html><head><title>Hello</title></head><body><p>world</p></body></html>'
},
2019-04-30 11:11:25 +08:00
2019-11-07 10:41:14 +08:00
{
name: 'css',
type: 'editor',
language: 'css',
label: 'CSS',
value: 'body {color: red;}'
},
2019-07-25 10:06:22 +08:00
2019-11-07 10:41:14 +08:00
{
name: 'json',
type: 'editor',
language: 'json',
label: 'JSON',
value: `{"a": 1, "b": 2}`
2019-04-30 11:11:25 +08:00
}
2019-11-07 10:41:14 +08:00
]
}
]
2019-04-30 11:11:25 +08:00
};