1 2 3 4 5 6 7 8
<script> export default { async created() { await this.$store.dispatch('auth/logout'); this.$router.replace('/login'); } }; </script>