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. jdash99
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Best 0
    • Groups 0

    jdash99

    @jdash99

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

    jdash99 Follow

    Latest posts made by jdash99

    • RE: Autocomplete example with simple array

      Thank you. I did’t saw the “view source button” before. Autocomplete is what I’m looking for.

      posted in Help
      J
      jdash99
    • Autocomplete example with simple array

      Can someone give me a full example of autocomplete component using a simple array or an object?

      I’m trying to replicate the examples in the documentation but haven’t got very far.

      This is what I have tried:

      <template>
        <q-autocomplete v-model="terms" @search="search"></q-autocomplete>
      </template>
      
      <script>
        export default {
        name: 'test'
        data () {
          return {
            terms: ['sheet', 'purple', 'local', 'face']
          }
        }
      </script>
      posted in Help
      J
      jdash99