Carlos Valdes
Carlos Valdes
I'm having the same problem, did you solve it?
You can fork the repository or using an existing fork. Add to your composer.json ``` "repositories": [ { "canonical": false, "type": "vcs", "url": "https://github.com/siberfx/laravel-google-translate" } ] ``` After that, add...
I also looking for drag handle docs. Any Updates?
@misbahansori Maybe you can override directly the composables. e.g. useAuth.ts ```ts export type User = { first_name: string; last_name: string; email?: string; }; export type RegisterCredentials = { first_name: string;...
X2 Also happen to me
Also we need use like that.
Try to import in nuxt.config.ts ``` imports: { dirs: ["./utils"], }, ```
Any answer for this? @benjamincanac
X2. I think that is good feature, a lot of site use this model.
I've tried different ways. First, i've modified nuxt.config.ts to use pauseOnLoad in true ```ts googleAdsense: { test: process.env.GOOGLE_ADSENSE_TEST_MODE === "true", pauseOnLoad: true, }, ``` After that i've created a composable...