13 lines
256 B
JavaScript
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'),
|
|
};
|
|
}
|
|
},
|
|
);
|