gengitkan/client/src/components/logout.riot

12 lines
190 B
Plaintext
Raw Normal View History

2019-11-28 11:50:51 +01:00
<ga-logout>
<style>
:host { display: none; }
</style>
<script>
export default {
onMounted() {
window.location = "/logout";
}
};
</script>
</ga-logout>