Files
leadchat/app/javascript/src/App.vue
Pranav Raj Sreepuram 2a34255e0b Initial Commit
Co-authored-by: Subin <subinthattaparambil@gmail.com>
Co-authored-by: Manoj <manojmj92@gmail.com>
Co-authored-by: Nithin <webofnithin@gmail.com>
2019-08-14 15:18:44 +05:30

31 lines
539 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>