[Vuejs]-Step bar load with animation

0👍

For a basic example, without using vue lets imagine this way:

You have a parent component that includes the b-progress and some other component or inout for the user:

  <template>
   <div>
       <b-progress :value="currentValue"><b-progress/>

       <button @click="currentValue++">Click to increment </button>
   </div>
  </template>

    export default {
    name: "Login.vue",

    data() {
        return {
            currentValue: 1
               }
         }
    }

Leave a comment