mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			235 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			235 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
export default {
 | 
						|
  props: {
 | 
						|
    trianglePosition: {
 | 
						|
      type: String,
 | 
						|
      default: '0',
 | 
						|
    },
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    cssVars() {
 | 
						|
      return {
 | 
						|
        '--triangle-position': this.trianglePosition + 'rem',
 | 
						|
      };
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 |