# useEnableMFA

> @web3auth/modal Vue Composable useEnableMFA | Embedded Wallets

Composable to enable Multi-Factor Authentication (MFA) using Embedded Wallets in Vue.

:::info

Please note that this composable doesn't work for external wallet logins. It only works for social login embedded wallets.

:::

### Import

```ts

```

### Usage

```html
<script setup lang="ts">

  const { enableMFA, loading, error } = useEnableMFA()
</script>

<template>
  <button @click="enableMFA" :disabled="loading">
    {{ loading ? "Enabling MFA..." : "Enable MFA" }}
  </button>
  {{ error.message }}
</template>
```

### Return type

```ts

```

#### `loading`

`Ref<boolean>`

Whether the MFA enabling process is in progress.

#### `error`

`Ref<Web3AuthError | null>`

Error that occurred during the MFA enabling process.

#### `enableMFA`

`<T>(params?: T) => Promise<void>`

Function to initiate the MFA enabling process. Accepts optional parameters depending on the MFA method or configuration required by your implementation.
