mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			761 B
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			761 B
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
| <template>
 | |
|   <div
 | |
|     v-dompurify-html="formatMessage(message, false)"
 | |
|     class="chat-bubble user"
 | |
|     :style="{ background: widgetColor }"
 | |
|   />
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import messageFormatterMixin from 'shared/mixins/messageFormatterMixin';
 | |
| 
 | |
| export default {
 | |
|   name: 'UserMessageBubble',
 | |
|   mixins: [messageFormatterMixin],
 | |
|   props: {
 | |
|     message: {
 | |
|       type: String,
 | |
|       default: '',
 | |
|     },
 | |
|     status: {
 | |
|       type: String,
 | |
|       default: '',
 | |
|     },
 | |
|     widgetColor: {
 | |
|       type: String,
 | |
|       default: '',
 | |
|     },
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <style lang="scss" scoped>
 | |
| @import '~widget/assets/scss/variables.scss';
 | |
| 
 | |
| .chat-bubble.user::v-deep pre {
 | |
|   background: $color-primary-light;
 | |
|   color: $color-body;
 | |
|   overflow: scroll;
 | |
|   padding: $space-smaller;
 | |
| }
 | |
| </style>
 | 
