mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-04 13:31:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			167 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			167 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import {Component} from './component';
 | 
						|
 | 
						|
export class AutoSubmit extends Component {
 | 
						|
 | 
						|
    setup() {
 | 
						|
        this.form = this.$el;
 | 
						|
 | 
						|
        this.form.submit();
 | 
						|
    }
 | 
						|
 | 
						|
}
 |