Skip to content

Files

Latest commit

 Cannot retrieve latest commit at this time.

History

History
53 lines (38 loc) · 889 Bytes

README.md

File metadata and controls

53 lines (38 loc) · 889 Bytes

vue-loading-spinner

Just another collection of loading spinners with Vue.js

Installation

npm install --save vue-loading-spinner

or

yarn add vue-loading-spinner

Usage

<template>
  <div id="app">
    <cube-spin></cube-spin>
  </div>
</template>

<script>
  import CubeSpin from 'vue-loading-spinner/components/Cube'
  export default {
    components: {
      CubeSpin
    }
  }
</script>

Demo

List of all spinner: Demo

Development Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

For detailed explanation on how things work, checkout the guide and docs for vue-loader.