No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. CDO
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Best 0
    • Groups 0

    CDO

    @CDO

    0
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    CDO Follow

    Latest posts made by CDO

    • RE: QSelect label-slot issue

      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.

      posted in Framework
      C
      CDO
    • QSelect label-slot issue

      Hi,

      I would want to handle q-select label display according to a variable :

      <q-select :label-slot="showLabel" label="My label" ... />
      

      Unfortunately, :label-slot=“false” will display the label anyway 😕
      Note that the opposite is working, i.e :label-slot=“true” without label (even if I don’t really see its interest…).

      I’ve also tried :label=“showLabel ? ‘My label’ : null”, but I still have a blank label.
      The only way not to have a label is to not set the label attribute at all.

      Thanks for your help !

      posted in Framework
      C
      CDO