e711290d8b
Had to do some manual fixing of the app.js file due to misplaced comments
11 lines
167 B
JavaScript
11 lines
167 B
JavaScript
import {Component} from './component';
|
|
|
|
export class AutoSubmit extends Component {
|
|
|
|
setup() {
|
|
this.form = this.$el;
|
|
|
|
this.form.submit();
|
|
}
|
|
|
|
}
|