]>
BookStack Code Mirror - bookstack/blob - resources/js/components/auto-submit.js
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Started refactor and alignment of component system
[bookstack]
/
resources
/
js
/
components
/
auto-submit.js
1
import {Component} from "./component";
2
3
export class AutoSubmit extends Component {
4
5
setup() {
6
this.form = this.$el;
7
8
this.form.submit();
9
}
10
11
}