mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-30 18:47:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			581 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			581 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <script>
 | |
| export default {
 | |
|   mounted() {
 | |
|     this.$nextTick(() => {
 | |
|       this.$el.setAttribute(
 | |
|         'style',
 | |
|         `height: ${this.$el.scrollHeight}px;overflow-y:hidden;`
 | |
|       );
 | |
|     });
 | |
| 
 | |
|     this.$el.addEventListener('input', this.resizeTextarea);
 | |
|   },
 | |
|   beforeDestroy() {
 | |
|     this.$el.removeEventListener('input', this.resizeTextarea);
 | |
|   },
 | |
|   methods: {
 | |
|     resizeTextarea(event) {
 | |
|       event.target.style.height = '3.2rem';
 | |
|       event.target.style.height = `${event.target.scrollHeight}px`;
 | |
|     },
 | |
|   },
 | |
|   render() {
 | |
|     return this.$slots.default[0];
 | |
|   },
 | |
| };
 | |
| </script>
 | 
