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

    How to call Loader on version 0.15.1

    Help
    2
    2
    389
    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.
    • T
      Turbie last edited by

      Hi,
      I use quasar version 0.15.1 but I can not call Loader for show loading

      1 Reply Last reply Reply Quote 0
      • S
        snowdrop last edited by snowdrop

        Did you mean on loading of buttons? If so, remove the loader property on q-btn (if it exists, because it is required in 0.14.9) and add a loading property bound on a data variable like this:

        <q-btn @click="btnLoading = !btnLoading" :loading="btnLoading">
          LOAD
          <q-spinner-hourglass slot="loading"/>
        </q-btn>
        ...
        data () {
          return () {
            btnLoading: false
          }
        }
        
        1 Reply Last reply Reply Quote 0
        • First post
          Last post