gengitkan/client/src/components/logout.riot

12 lines
190 B
Plaintext

<ga-logout>
<style>
:host { display: none; }
</style>
<script>
export default {
onMounted() {
window.location = "/logout";
}
};
</script>
</ga-logout>