Navigation

    Quasar Framework

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

    HLH

    @HLH

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

    HLH Follow

    Posts made by HLH

    • RE: q-popup-proxy is not closing q-date popup using refs

      Hi:
      I have the same problem as you. I have verified that if I put the component inside a v-for it does not work. With this check I assumed that ref must be an array not a single value. (https://stackoverflow.com/questions/52086128/vue-js-ref-inside-the-v-for-loop)
      So my solution was:
        <template v-for = “(item, i) in items”>
      …
         <q-popup-proxy ref = “MyReferences”>
                <q-date
                   …
                   @input = “() => $ refs.MyReferences [i] .hide ()”
                />
        </q-popup-proxy>
      …
      </template>
      Where i = 0,1,2, …
      I do not know if in your case this helps you, but to me your doubt helped me to solve mine, thanks 🙂

      posted in Help
      H
      HLH