Releases: DanSnow/vue-recaptcha
Releases · DanSnow/vue-recaptcha
v2.0.3
2.0.3 (2022-09-17)
Bug Fixes
- upgrade vue-demi to v0.13.11 to fix vue 2.7 warning (d86f072)
v2.0.2
⚠️ this version didn't correctly publish ⚠️
2.0.2 (2022-09-17)
Bug Fixes
- upgrade vue-demi to v0.13.11 to fix vue 2.7 warning (d86f072)
v2.0.1
What's Changed
- fix: check if this.$slots.default is a function before calling it by @Esurnir in #742
New Contributors
Full Changelog: v2.0.0...v2.0.1
v2.0.0 - Vue 3 support
It's two years from v1.3.0. I believe there already has somebody can't wait and already install from vue-v3
branch. But finally, you can install this from NPM.
Breaking Changes
- You will need to install
@vue/composition-api
if you want to use this package with Vue 2
loadRecaptchaScript
is true
by default
VueRecaptcha
now is a named export, means that you need to import it like:
import { VueRecaptcha } from 'vue-recaptcha'
export default {
components: { VueRecaptcha }
}
Features
Full Changelog: v1.3.0...v2.0.0
v1.2.0
- Add recaptcha script loader #252 (Thanks @tkesgar)
Now you can use :loadRecaptchaScript="true"
to load recaptcha script automatically
v1.1.0
- Add typescript definition
- Add es build
v1.0.0
vue-recaptcha has been stable for a long time.
So I think it's time to release v1.0.0.
Thanks to all users for using this package.
And also special thanks to all contributors.
Feature
- Now you can mock
window.grecaptcha
to test vue-recaptcha
v0.4.0
Breaking Change
- Remove prop
options
, now all reCAPTCHA's options are prop
Feature
- Support invisible reCAPTCHA ( #39 )
v0.3.3
Feature
- Support server-side rendering (#36)