Tutorial

Hassle-free Spinners with Vue.js

Published on September 11, 2017
Default avatar

By Joshua Bemenderfer

Hassle-free Spinners with Vue.js

While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

I am exceedingly lazy. So lazy, in fact, that I default to downloading packages for itty-bitty components like spinners. Well, laziness coupled with the fact that for some reason my custom spinners are always glitchy. The upside of this is that occasionally you encounter a simple package that just does exactly what you want and nothing else. Enter vue-spinner-component. It’s a spinner. A tiny one, that just does the basics of what you need, nothing more.

Installation

Install vue-spinner-component in your Vue.js project.

# Yarn
$ yarn add vue-spinner-component

# or NPM
$ npm install vue-spinner-component --save

Usage

INeedASpinner.vue
<template>
  <div>
    <p>Something is doing things.</p>
    <spinner></spinner>
  </div>
</template>

<script>
import Spinner from 'vue-spinner-component/src/Spinner.vue';

export default {
  components: {
    Spinner
  }
}
</script>

There are, of course, a few things you can customize. But just the basics.

Spinner Size

The width and height of the spinner, in px. You could set this via CSS too.

<spinner :size="20"></spinner>

Spinner Track Width

The width of the spinner track, in px.

<spinner :depth="20"></spinner>

Spinner Color

The hex color of the spinner.

<spinner color="#F9EC31"></spinner>

Spinner Speed

The time it takes for the spinner to make a full revolution in seconds.

<spinner :speed="1.5"></spinner>

Spinner Direction

Whether or not the spinner rotates clockwise or counterclockwise.

<spinner :clockwise="true"></spinner>

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


About the authors
Default avatar
Joshua Bemenderfer

author

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
Leave a comment


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel