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

    q-select error

    Help
    1
    1
    213
    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.
    • B
      bszubiak last edited by

      I am currently trying to incorporate a q-select dropdown in our VueJs/Nuxt App however, whenever I take the standard q-select from the documentation example, I get the error “TypeError: Cannot use ‘in’ operator to search for ‘label’ in English”

      <template>
        <v-layout id="table" column>
          <LatestProject />
          <DashboardProjectGrid />
          <q-select v-model="model" :options="options" label="Standard" />
        </v-layout>
      </template>
      <script>
        import LatestProject from '~/components/LatestProject.vue';
        import DashboardProjectGrid from '~/components/DashboardProjectGrid.vue';
        import { Logout } from '~/shared/gateway.js';
        import { QSelect } from "quasar-framework/dist/quasar.mat.esm";
        export default {
          components: {
            LatestProject,
            DashboardProjectGrid,
            QSelect,
          },
          data() {
            return {
              authenticated: false,
              model: null,
              options:['English','French','German'],
            }
          }
      

      If anyone can let me know what is not working, I’ve tried everything.

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