Loader
A simple vue loader. Perfect for all your loader scenarios.
Demo
Pulse
Dots
Inline
Install
bash
npm i @vuesimple/vs-loader
Usage
html
<template>
<vs-loader variant="pulse"></vs-loader>
</template>
<script>
import VsLoader from '@vuesimple/vs-loader';
export default {
components: {
VsLoader,
},
};
</script>
CDN
html
<script src="https://unpkg.com/@vuesimple/vs-loader@<version>/dist/index.min.js"></script>
TIP
Replace <version>
with a version number in the above url.
javascript
// Main/Entry file
app.use(VsLoader.plugin);
html
<template>
<vs-loader variant="pulse"></vs-loader>
</template>
Nuxt.js
After installation,
Create a file
/plugins/vs-loader.js
javascriptimport Vue from 'vue'; import VsLoader from '@vuesimple/vs-loader'; Vue.component('vs-loader', VsLoader);
Update
nuxt.config.js
javascriptmodule.exports = { ... plugins: [ { src: '~plugins/vs-loader', mode: 'client' } ... ] }
In the page/ component
html<template> <vs-loader variant="pulse"></vs-loader> </template>
Note
- For older Nuxt versions, use
<no-ssr>...</no-ssr>
tag. - You can also do
import VsLoader from '@vuesimple/vs-loader'
& add incomponent:{VsLoader}
and use it within component, without globally installing in plugin folder.
Props
Name | Type | Default | Description |
---|---|---|---|
variant | String | pulse | Variants: pulse , dots , inline . |
color | String | #1f73b7 | Loader color. |
size | Number | 10 | Loader size. |
center | Boolean | - | Center aligns the loader wrt the parent div. |