14 lines
168 B
Vue
14 lines
168 B
Vue
<script>
|
|
import { logout } from "@/util/auth";
|
|
|
|
export default {
|
|
name: "Logout",
|
|
created: function() {
|
|
logout();
|
|
this.$router.push("/");
|
|
}
|
|
};
|
|
</script>
|
|
|
|
|