mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-02-11 07:38:57 +00:00
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();
|
|
}
|
|
|
|
}
|