You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The [`useSpendableBalance`](/api/react/function/useSpendableBalance)hook can be used to get the [spendable balance](https://wiki.polkadot.network/docs/learn-account-balances) of an account(s).
83
+
The [`useSpendableBalance`](/api/react/function/useSpendableBalance)& [`useSpendableBalances`](/api/react/function/useSpendableBalances) hooks can be used to get the [spendable balance](https://wiki.polkadot.network/docs/learn-account-balances) of an account(s).
Copy file name to clipboardExpand all lines: apps/docs/vue/guides/number-utility.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,17 +69,17 @@ console.log(nativeToken.value.amountFromNumber(1).toLocaleString("en-NZ")); // D
69
69
70
70
## Spendable balance
71
71
72
-
The [`useSpendableBalance`](/api/vue/function/useSpendableBalance) composable can be used to get the [spendable balance](https://wiki.polkadot.network/docs/learn-account-balances) of an account(s).
72
+
The [`useSpendableBalance`](/api/react/function/useSpendableBalance) & [`useSpendableBalances`](/api/react/function/useSpendableBalances) composable can be used to get the [spendable balance](https://wiki.polkadot.network/docs/learn-account-balances) of an account(s).
73
73
74
74
```vue
75
75
<script setup lang="ts">
76
-
import { useSpendableBalance } from "@reactive-dot/vue";
76
+
import { useSpendableBalance, useSpendableBalances } from "@reactive-dot/vue";
0 commit comments