agola-web/src/views/Logout.vue

14 lines
168 B
Vue
Raw Normal View History

2018-12-09 13:21:20 +00:00
<script>
import { logout } from "@/util/auth";
export default {
name: "Logout",
created: function() {
logout();
this.$router.push("/");
}
};
</script>