Chatwoot/app/javascript/dashboard/App.vue

32 lines
588 B
Vue
Raw Normal View History

<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 {
2019-08-25 06:13:15 +00:00
name: 'App',
components: {
WootSnackbarBox,
},
mounted() {
this.$store.dispatch('set_user');
this.$store.dispatch('validityCheck');
},
};
</script>
<style lang="scss">
@import './assets/scss/app';
</style>
2019-08-25 06:13:15 +00:00
<style src="vue-multiselect/dist/vue-multiselect.min.css"></style>