Using the nuxt module for a while and wanted to implement custom login/sign-ups. For that as I understand I need to use the Kinde client (never used before on the frontend side).
const client = useKindeClient()
function test() {
console.log(client) // used @click on a button and logs null
}
Also, the type returned by the
useKindeClient
composable is
any
, that seems super wrong to me.
Have a great day, Colin.
PS: Here is a link to my project repo (
https://github.com/ColinEspinas/starter)