Button

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.

QBtn API

Loading API...

Usage

Standard

Standard buttons



Custom colors

Custom colors



With icon

With icon



Round

Round buttons



Square

Square buttons



Custom content

Custom content



Truncate label



Design

Button design



Alignment

Button alignment



Size

Button size



Padding

The default padding is “xs md”. However, you can use padding prop to customize it:

Button padding



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).

Indeterminate progress



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:

Deterministic progress



Custom ripple

Custom ripple



Handling navigation

UMD usage

  • If you will be using to & replace props, make sure that you also inject Vue Router in your project. Otherwise use the alternative href 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.




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

Other options



Disable

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.

Form Submission