lion/packages/fieldset/docs/helpers/demo-fieldset-child.js

13 lines
256 B
JavaScript

import { LionField } from '@lion/form-core';
customElements.define(
'demo-fieldset-child',
class extends LionField {
get slots() {
return {
...super.slots,
input: () => document.createElement('input'),
};
}
},
);