mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-30 18:47:51 +00:00 
			
		
		
		
	 c4e2a84f65
			
		
	
	c4e2a84f65
	
	
	
		
			
			* Feature: Agent Profile Update with avatar * Add Update Profile with name, avatar, email and password
		
			
				
	
	
		
			31 lines
		
	
	
		
			544 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			544 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div id="app" class="app-wrapper app-root">
 | |
|     <transition name="fade" mode="out-in">
 | |
|       <router-view></router-view>
 | |
|     </transition>
 | |
|     <woot-snackbar-box />
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import WootSnackbarBox from './components/SnackbarContainer';
 | |
| 
 | |
| export default {
 | |
|   name: 'App',
 | |
| 
 | |
|   components: {
 | |
|     WootSnackbarBox,
 | |
|   },
 | |
| 
 | |
|   mounted() {
 | |
|     this.$store.dispatch('setUser');
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <style lang="scss">
 | |
| @import './assets/scss/app';
 | |
| </style>
 | |
| 
 | |
| <style src="vue-multiselect/dist/vue-multiselect.min.css"></style>
 |