26 lines
665 B
Vue
26 lines
665 B
Vue
<template>
|
|
<div>
|
|
<article class="message is-danger">
|
|
<div class="message-body py-2">
|
|
{{
|
|
$store.lang === "en"
|
|
? "Click the button below to log out of the system."
|
|
: "Nhấn vào nút bên dưới để thoát khỏi hệ thống."
|
|
}}
|
|
</div>
|
|
</article>
|
|
<button
|
|
class="button is-danger has-text-white"
|
|
@click="$requestLogin()"
|
|
>
|
|
<span class="icon">
|
|
<Icon
|
|
name="material-symbols:logout-rounded"
|
|
:size="18"
|
|
/>
|
|
</span>
|
|
<span>{{ $store.lang === "en" ? "Sign out" : "Đăng xuất" }}</span>
|
|
</button>
|
|
</div>
|
|
</template>
|