AccountToAccount is a component that allows a user to transfer funds from one account to another within the system. It supports confirmation via email or phone and provides basic UI customization for input fields.
Basic configuration example:
<ui-account-to-account
:wallet-id="3"
:account-id="2"
:hide-account-email="true"
:input-properties="{ variant: 'outlined' }"
confirm-by="email"
>
</ui-account-to-account>The component displays a transfer form where the user selects the recipient, specifies the amount, and confirms the transaction.
Configuration options:
| props | default | type | description |
| :wallet-id | Number | Identifier of the wallet from which the transfer is made. | |
| :account-id | Number | Identifier of the current user account. | |
| :input-properties | Object | Custom input field styling options (see the Input Properties article). | |
| confirm-by | String | Confirmation method: email, phone, or undefined. | |
| :hide-account-email | false | Boolean | If set to true, the recipient’s email address is hidden in the account selection dropdown. |
Note: All of the settings can be customized either from admin panel by manually editing code or from within the back office by pressing on a cog icon in a left upper corner of the page (only accessible when "Online office admin" flag is presented).