You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using Vue 3 (Composition API) + TS + Vite.
The module is installed version 3.0.0-alpha.6.
After installing the package and declaring the plugin in main.ts I still don't have access to the Checkbox component.
As a result I get an error in the console [Vue warn]: Failed to resolve component: Checkbox
To make it tree-shake able, v3 does not register these components to global. You need to import them in your code
import{Checkbox}from'vue-recaptcha'
Hi @DanSnow , I was using <import { Checkbox } from 'vue-recaptcha/head'> and it was working so far. Suddenly the checkbox is not being displayed anymore. I tried to remove the /head but it gives me an error <Can't resolve '@unhead/vue' >
Description
I am using Vue 3 (Composition API) + TS + Vite.
The module is installed version 3.0.0-alpha.6.
After installing the package and declaring the plugin in main.ts I still don't have access to the Checkbox component.
As a result I get an error in the console [Vue warn]: Failed to resolve component: Checkbox
Minimal Reproducible Example
main.ts
app.vue
System info
The text was updated successfully, but these errors were encountered: