2019-08-14 09:48:44 +00:00
|
|
|
<template>
|
|
|
|
<div id="app" class="app-wrapper app-root">
|
|
|
|
<transition name="fade" mode="out-in">
|
|
|
|
<router-view></router-view>
|
|
|
|
</transition>
|
2019-12-16 12:53:14 +00:00
|
|
|
<woot-snackbar-box />
|
2019-08-14 09:48:44 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import WootSnackbarBox from './components/SnackbarContainer';
|
|
|
|
|
|
|
|
export default {
|
2019-08-25 06:13:15 +00:00
|
|
|
name: 'App',
|
2019-08-14 09:48:44 +00:00
|
|
|
|
|
|
|
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>
|