Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

useAccount

Usage

import { useAccount } from '@ivem/kit-vue'
 
const account = useAccount()

Parameters

  • None

Return Type

  • Ref<GetAccountReturnType>

Examples

if (account.value.isConnected) {
  console.log(account.value.address)
}

Related