mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Web-components: Fix Form template component
This commit is contained in:
parent
cd175660ba
commit
460c182da2
@ -25,7 +25,8 @@ export class SbForm extends LitElement {
|
||||
this.complete = false;
|
||||
}
|
||||
|
||||
onSubmit() {
|
||||
onSubmit(event) {
|
||||
event.preventDefault();
|
||||
const options = {
|
||||
bubbles: true,
|
||||
composed: true,
|
||||
@ -55,11 +56,12 @@ export class SbForm extends LitElement {
|
||||
@change=${(event) => {
|
||||
event.preventDefault();
|
||||
this.value = event.target.value;
|
||||
return false;
|
||||
}}
|
||||
/>
|
||||
</label>
|
||||
<button type="submit">Submit</button>
|
||||
${this.complete && '<p>Completed!!</p>'}
|
||||
${this.complete ? 'Completed!!' : ''}
|
||||
</form>
|
||||
`;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user