0.1.0 • Published 5 years ago

vue-loading-components v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

vue-loading-components

Easy to use loading animations for React projects. Uses SVG animations from SamHerbert SVG-Loaders project.

Installation

npm i vue-loading-components

or

yarn add vue-loading-components

Demo

DEMO

Loading Components

  • Audio
  • BallTriangle
  • Bars
  • Circles
  • Grid
  • Hearts
  • Oval
  • Puff
  • Rings
  • SpinningCircles,
  • TailSpin,
  • ThreeDots

Example

<template>
  <Audio :width="64" :height="64" :fill="'yellow'" />
</template>

<script>
import { Audio } from 'vue-loading-components'

export default {
  name: 'HelloWorld',
  components: { Audio }
}
</script>

Props

NameTypeDefault Value
fillString#ffffff
heightNumber or String64 (px)
widthNumber or String64 (px)

License

MIT