mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 13:07:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			606 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			606 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></woot-snackbar-box>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import WootSnackbarBox from './components/SnackbarContainer';
 | 
						|
 | 
						|
export default {
 | 
						|
  name: 'App',
 | 
						|
 | 
						|
  components: {
 | 
						|
    WootSnackbarBox,
 | 
						|
  },
 | 
						|
 | 
						|
  mounted() {
 | 
						|
    this.$store.dispatch('set_user');
 | 
						|
    this.$store.dispatch('validityCheck');
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<style lang="scss">
 | 
						|
@import './assets/scss/app';
 | 
						|
</style>
 | 
						|
 | 
						|
<style src="vue-multiselect/dist/vue-multiselect.min.css"></style>
 |