Simple Vue.js plugin for page scroll progress bar
Step 1: Installation
npm i vue-scroll-progress --save
yarn add vue-scroll-progress
CDNs
Step 2: Usage
main.js
// YourComponent.vue or main.js for global usage
import Vue from "vue";
import VueScrollProgress from "vue-scroll-progress";
Vue.use(VueScrollProgress);
Use in component
<!-- .vue template -->
<template>
<VueScrollProgress></VueScrollProgress>
</template>
Set progress bar style, and customize as you want(Optional)
<style>
/* play with some lines below */
#progress-container-el {
/* background */
background-color: transparent !important;
top: calc(100% - 4px) !important; /* remove if Vue 3.x */
}
#progress-el {
/* progress bar */
background-color: red !important;
}
</style>
Reference
Below are the reference links:
No. | Link |
---|---|
1. | Read more here. |
2. | Follow code author here. |