# Login

สำหรับใช้งานฟอร์ม Log In

# Usage

<snt-login></snt-login>

# API

# Example

# Dialog login

<snt-dialog :max-width="400">
  <template #activator="{ on }">
    <div v-on="on">
      เข้าสู่ระบบ
    </div>
  </template>
  <template #default="{ close }">
    <snt-login @click:close="close()"></snt-login>
  </template>
</snt-dialog>

# Custom header

<snt-login>
  <template #header>
    <div>เข้าสู่ระบบ</div>
  </template>
</snt-login>