1. vue-bulma-progress-tracker
ProgressTracker component is based on progress-tracker for Vue Bulma
vue-bulma-progress-tracker
Package: vue-bulma-progress-tracker
Created by: vue-bulma
Last modified: Tue, 28 Jun 2022 19:05:47 GMT
Version: 0.0.4
License: MIT
Downloads: 434
Repository: https://github.com/vue-bulma/progress-tracker

Install

npm install vue-bulma-progress-tracker
yarn add vue-bulma-progress-tracker

ProgressTracker

ProgressTracker component is based on progress-tracker for Vue Bulma.

Installation

$ npm install vue-bulma-progress-tracker --save

Examples

<template>
  <progress-tracker>
    <step-item v-for="n in [1, 2, 3, 4, 5]" :is-complete="n < 3" :is-active="n === 3"></step-item>
  </progress-tracker>
</template>

<script>
import ProgressTracker, { StepItem } from 'vue-bulma-progress-tracker'

export default {
  components: {
    ProgressTracker,
    StepItem
  }
}
</script>

Badges



fundon.me  · 
GitHub @fundon  · 
Twitter @_fundon

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin