UNPKG

@zenweb/form

Version:

Zenweb Form module

22 lines (21 loc) 397 B
import { Field, simple } from '../field.js'; /** * 一个勾选框 * - 通常用于用户注册协议 */ export class Onebox extends Field { _value = true; /** * 设置勾选值 */ value(value) { this._value = value; return this; } extra() { return { value: this._value, }; } } export const onebox = simple(Onebox);