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. dfrnks
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Best 0
    • Groups 0

    dfrnks

    @dfrnks

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

    dfrnks Follow

    Latest posts made by dfrnks

    • RE: How v-for in q-list with highlight

      Hi, you can using this.

      code block

          <q-list highlight>
              <template v-for="(tp, k) in tp_produtos">
                  <q-item-separator v-if="k" />
                  <q-list-header>{{tp.descricao}}</q-list-header>
                  <q-item v-for="prods in tp.prods" :key="prods.id">
                      <q-item-main>
                          <q-item-tile label>{{prods.descricao}}</q-item-tile>
                          <q-item-tile sublabel>R${{prods.valor}}</q-item-tile>
                      </q-item-main>
                  </q-item>
              </template>
          </q-list>
      posted in Help
      D
      dfrnks