update:更新table&form组件

This commit is contained in:
JaguarJack
2021-04-10 21:57:51 +08:00
parent 246d2caf44
commit f321a71677
4 changed files with 92 additions and 52 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace catcher\library\form\components;
use FormBuilder\Driver\FormComponent;
use FormBuilder\Factory\Elm;
class Editor extends FormComponent
{
protected $defaultProps = [
'type' => 'editor'
];
public function createValidate()
{
// TODO: Implement createValidate() method.
return Elm::validateStr();
}
}