Skip to content

Instantly share code, notes, and snippets.

@devjin0617
Created March 2, 2017 05:15
Show Gist options
  • Save devjin0617/1558643a860ce32b1c506105e75d2466 to your computer and use it in GitHub Desktop.
Save devjin0617/1558643a860ce32b1c506105e75d2466 to your computer and use it in GitHub Desktop.
<template>
...
<button type="button" class="btn btn-primary" autocomplate="off" data-loading-text="jquery with bootstrap" @click="clickBtn">
...
</template>
<script>
export default {
name: 'jQueryApp',
methods: {
clickBtn (event) {
$(event.target).button('loading')
setTimeout(function() {
$(event.target).button('reset')
}, 1000);
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment