0

on search button click i want to show progress bar and after loading data i want to dismiss progress bar in vuetify. how can i do that :

 <template>
    <v-progress-linear v-show="progressBar" slot="progress" color="blue" indeterminate/>

     <v-btn color="primary" rounded center  v-on:click="search" > Search </v-btn>
 </template>

i want button click to show progress bar and after loading data to hide progress bar. How can i do it?

1 Answer 1

2

Your v-btn calls the search method. In there you can change the progressbar.

search() {
  this.progressBar = true;
  // Load data here
  this.progressBar = false;
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.