We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does this library supports being uses with Vuetify <v-btn />?
<v-btn />
For example <v-btn vue-promise-btn @click.stop="onAuthenticate" block color='primary'>Sign In</v-btn>
<v-btn vue-promise-btn @click.stop="onAuthenticate" block color='primary'>Sign In</v-btn>
I could not get this to work, I believe, to make v-btn as loading state simply specify loading as true as follows <v-btn loading />
<v-btn loading />
The text was updated successfully, but these errors were encountered:
@panteparak I haven't tried, but you can check the same way as described in Vue bootstrap example
<b-btn v-promise-btn="{ promise: bootstrapBtnPromise }" @click="vueBootstrap('Hello from vue bootstrap button!')">Extended with Vue Bootstrap</b-btn>
Where bootstrapBtnPromise - data variable with Promise for async action.
bootstrapBtnPromise
You can try that example here: https://stukh.github.io/vue-promise-btn/
Sorry, something went wrong.
as far as i've tested, it does not work.
No branches or pull requests
Does this library supports being uses with Vuetify
<v-btn />
?For example
<v-btn vue-promise-btn @click.stop="onAuthenticate" block color='primary'>Sign In</v-btn>
I could not get this to work, I believe, to make v-btn as loading state simply specify loading as true as follows
<v-btn loading />
The text was updated successfully, but these errors were encountered: