I am using the Vue SDK and I am authenticating with the following code…
<script setup>
import { useAuth0 } from '@auth0/auth0-vue';
const { loginWithRedirect, user, isAuthenticated } = useAuth0();
function login(){
loginWithRedirect({
scope: "read:messages"
});
}
</script>
However, when I try to run this I notice the scope is not added to the request…
What am I missing? How can I add the scope to the authorize message when using the Vue SDK? The docs seem to suggest this is correct