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

    [Solved] Missing required prop: "value" found in ---> <QSelect>

    Help
    3
    4
    3030
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • valasek
      valasek last edited by valasek

      I have this q-select

      <q-select :options="logLevels" option-value="id" option-label="level" emit-value options-dense label="Select log level" @input="getLogFile" />
      

      and data:

      logLevels: [
              {
                id: 0,
                level: 'Information'
              },
              {
                id: 1,
                level: 'Warnings and Errors'
              }
            ],
      

      and getting Vue-warning: “Missing required prop: “value” found in —> <QSelect>”.
      Any hints appreciated.

      I am using
      Pkg quasar… v1.0.0-rc.4
      Pkg @quasar/app… v1.0.0-rc.6

      1 Reply Last reply Reply Quote 0
      • metalsadman
        metalsadman last edited by

        @valasek v-model missing.

        1 Reply Last reply Reply Quote 0
        • s.molinari
          s.molinari last edited by

          Or the value prop.

          Scott

          1 Reply Last reply Reply Quote 0
          • valasek
            valasek last edited by

            Thank you fixed using v-model option.

            1 Reply Last reply Reply Quote 0
            • First post
              Last post