Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Oliver_Max
    O
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Oliver_Max

    @Oliver_Max

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

    Oliver_Max Follow

    Posts made by Oliver_Max

    • RE: [Vue warn]: Error in callback for watcher "function () { return this._data.$$state }": "Error: [vuex] Do not mutate vuex store state outside mutation handlers."

      I have same problem. Did you solve it?

      posted in Help
      O
      Oliver_Max
    • 1 QTable and 3 QSearch

      Hello everyone.
      (I apologize in advance for my English).

      I have one QDataTable with 5 columns, and for first three columns i have 3 QSearch (type, name, info).

      But QTable has only one :filter=“filter”.

      How can I specify by what column should the QSearch look for?
      I need that first QSearch search in first column of QTable and etc.

      It’s looks like that:

                  <q-table
                           :data="dishes"
                           :columns="columns"
                           row-key="name"
                           :filter="filter"
                  >
                      <q-tr slot="top-row" slot-scope="props">
                          <q-td>
                              <q-search no-icon //search in type column
                                      type="text"
                                      v-model="filter"
                              />
                          </q-td>
                          <q-td>
                              <q-search no-icon //search in name column
                                      type="text"
                                      v-model="filter"
                              />
                          </q-td>
                          <q-td>
                              <q-search no-icon //search in info column
                                      type="text"
                                      v-model="filter"
                              />
                          </q-td>
                      </q-tr>
      

      Now QSearch search by name

      posted in Help
      O
      Oliver_Max