Vue spinners
A simple collection of spinners from spinkit . Vist Github link
npm i vue-spinners --save
A simple collection of spinners from spinkit . Vist Github link
npm i vue-spinners --save
In order to use the Circle spinner please use the following code
<template> | |
<div> | |
<circle-spin loading="isLoading"></circle-spin> | |
</div> | |
</template> | |
<script> | |
export default { | |
data(){ | |
return { | |
isLoading: true | |
} | |
} | |
} | |
</script> |
Availabe props are the following ...
Props | Value | Default |
---|---|---|
loading | Boolean | true |
height | Number | 40 |
width | Number | 40 |
color | Hex color value | #333 |