1 import {Component} from "./component";
5 * Simply submits a parent form when this input is changed.
7 export class SubmitOnChange extends Component {
10 this.filter = this.$opts.filter;
12 this.$el.addEventListener('change', (event) => {
14 if (this.filter && !event.target.matches(this.filter)) {
18 const form = this.$el.closest('form');