Thanks for your reply.
However, in your example, the label is hidden but its slot is still here (blank space on top).
I’ve found a way to do what I want :
<q-select :label-slot=“showLabel” … >
<template v-slot:label>
My label
</template>
</q-select>
Regards.