()
| 1 | export default class extends HTMLElement { |
| 2 | connectedCallback () { |
| 3 | this.form.addEventListener('submit', (e) => { |
| 4 | e.preventDefault() |
| 5 | |
| 6 | this.submit() |
| 7 | }) |
| 8 | |
| 9 | if (this.dataset.onload === 'true') { |
| 10 | this.form.querySelector('button').click() |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | submit () { |
| 15 | fetch(this.form.action, { |