UNPKG

@diax-js/form-element

Version:

Simple implementation of Form Associated Custom Elements.

7 lines 247 B
import { getFormElementClass } from './base-form-element'; export function FormElement(tagName) { return function (target) { customElements.define(tagName, getFormElementClass(target)); }; } //# sourceMappingURL=form-element.js.map