fix(ui-vue2): button,container,text formconfig补充完整

This commit is contained in:
roymondchen 2022-08-09 19:53:34 +08:00 committed by jia000
parent beee67b3eb
commit 5ccb5f1ec9
3 changed files with 29 additions and 3 deletions

View File

@ -16,4 +16,9 @@
* limitations under the License. * limitations under the License.
*/ */
export default []; export default [
{
text: '文本',
name: 'text',
},
];

View File

@ -16,4 +16,15 @@
* limitations under the License. * limitations under the License.
*/ */
export default []; export default [
{
name: 'layout',
text: '容器布局',
type: 'select',
defaultValue: 'absolute',
options: [
{ value: 'absolute', text: '绝对定位' },
{ value: 'relative', text: '流式布局' },
],
},
];

View File

@ -16,4 +16,14 @@
* limitations under the License. * limitations under the License.
*/ */
export default []; export default [
{
name: 'text',
text: '文本',
},
{
name: 'multiple',
text: '多行文本',
type: 'switch',
},
];