Quasar has a component called QBtn which is a button with a few extra useful features. For instance, it comes in two shapes: rectangle (default) and round. It also has the material ripple effect baked in (which can be disabled).
The button component also comes with a spinner or loading effect. You would use this for times when app execution may cause a delay and you want to give the user some feedback about that delay. When used, the button will display a spinning animation as soon as the user clicks the button.
When not disabled or spinning, QBtn emits a @click
event, as soon as it is clicked or tapped.
Usage
Standard
Custom colors
With icon
Round
Square
Custom content
Design
Alignment
Size
Padding
The default padding is “xs md”. However, you can use padding
prop to customize it:
Progress related
Some button actions involve contacting a server, so an asynchronous response. It’s best that you inform the user about a background process taking place until the asynchronous response is ready. QBtn offers this possibility through the loading
prop. This property will display a QSpinner (by default) instead of the icon and/or label of the button. Custom loading content can also be used (not only text or spinners).
Should you wish, you can also display a deterministic progress within the button by using the additional percentage
property along with what you’ve already learned about buttons with progress:
Custom ripple
Connecting to Vue Router updated on v2.9+
UMD usage
- If you will be using
to
&replace
props, make sure that you also inject Vue Router in your project (Quasar CLI projects have this out of the box). Otherwise use the alternativehref
prop. - Due to the above, some of the QBtn below won’t work in Codepen/jsFiddle too.
TIP
Prefer the Vue Router props over href
when you can, because with href
you will trigger a window navigation instead of an in-page Vue Router navigation.
You can also delay, cancel or redirect navigation, as seen below. For a more in-depth description of the @click
event being used below, please refer to QBtn API card at the top of the page.
For more convoluted use-cases, you can also directly use the native Vue <router-link>
component to wrap a QBtn. This also gives the opportunity to control the state according to app’s current route:
Other options
Disable
Controlling the button for form submission
When you have a button to submit a form’s input to the server, like a “Save” button, more often than not you will also want to give the user the ability to submit the form with a press of the ENTER key. If you would also like to give the user feedback of the saving process being in progress, and to prevent the user repeatedly pressing the button, you would need the button to show a loading spinner and be disabled from click events. QBtn allows this behavior if configured so.
WARNING
When placing a QBtn with type “submit” in one of the “before”, “after”, “prepend”, or “append” slots of a QField, QInput or QSelect, you should also add a @click
listener on the QBtn in question. This listener should call the method that submits your form. All “click” events in such slots are not propagated to their parent elements.