I want to get the status of the progress bar at the any moment in any where of my code, where one is in progress or finished. this.$progress.start(); // some code // some more code let status = this.$progress.status(); // Required {status: 'open', progress: 20%} if(status){ // do something } this.$progress.finish(); // End