mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-03 02:13:16 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			348 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			348 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * A simple component to render a code editor within the textarea
 | 
						|
 * this exists upon.
 | 
						|
 */
 | 
						|
import {Component} from './component';
 | 
						|
 | 
						|
export class CodeTextarea extends Component {
 | 
						|
 | 
						|
    async setup() {
 | 
						|
        const {mode} = this.$opts;
 | 
						|
        const Code = await window.importVersioned('code');
 | 
						|
        Code.inlineEditor(this.$el, mode);
 | 
						|
    }
 | 
						|
 | 
						|
}
 |