TypeScript: Property '$recaptcha' does not exist
VictorKrasnov opened this issue · 1 comments
VictorKrasnov commented
TS2339: Property '$recaptcha' does not exist on type 'LoginPopupComponent'.
60 | async mounted () {
61 | try {
62 | await this.$recaptcha.init()
| ^^^^^^^^^^
63 | } catch (e) {
64 | console.log(e)
65 | }
dloranc commented
To solve this issue you have to add @nuxtjs/recaptcha
to the types
array in your tsconfig.json
:
"types": [
"@nuxtjs/recaptcha"
]