Arif Fahmi
Arif Fahmi
Any update with this issue? Got the same problem unfortunately :(
I still have this issue, not just vuetify, but the vue itself. Format on save take hours, no autocompletion, etc. Any way to fix this? Thanks
Same thing to me, but I'm on WAMP.NET. And I think it's either something wrong with query or else. Here my log : ``` [2022-09-08T12:56:00.225128+08:00] installer.INFO: Matched route "{route}". {"route":"api_installer_migration","route_parameters":{"_controller":"OrangeHRM\\Installer\\Controller\\Installer\\Api\\MigrationAPI::handle","_route":"api_installer_migration"},"request_uri":"http://192.168.1.202:89/installer/index.php/installer/api/installation/migration","method":"POST"}...
``` #4 C:\Wamp.NET\sites\orangehrm\installer\Migration\V4_0\Migration.php(114): Doctrine\DBAL\Query\QueryBuilder->executeQuery() ``` I notice it used the version 4 folder, why didn't it use the version 5?
> I copied over and enhanced issue #61 typings (sharing code as image is pretty evil...) > > Can definitely be improved further. > > ```ts > declare module 'vue-signature-pad'...
> I don't think Nuxt has something to do with it, it's a problem in TS realm. No idea why you get that tho. > > It may happen if...
Well, the temporary solution for now is to make it as any. Like this ``` const { isEmpty, data } = (this.$refs.signaturePad as any).saveSignature() ``` This is the way I...
> You should move your imports INTO the `declare module` stuff, or the ambient declaration just won't have effect, as even a single top level `import` or `export` makes that...
> Remember to restart VSCode between each rename of the files, as sometimes it get out of sync I even restart my pc because the past overwhelm-headache-kindof issue I have...
By the way, in Nuxt, I should put it in `index.d.ts` on the root project, right? not in plugins folder, isn't?