erro no finally e no prevent
[Concluído]
Criador
Leonardo Szpaler Pereira
mesmo utilizando o prevent no submit o mesmo nao abre o auth do back end e muda a url para o # passado no form action e o mesmo acusa um erro no finally
Property 'finally' does not exist on type 'Promise<void>'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2018' or later.Vetur(2550)
any
(method) Promise<void>.finally(onfinally?: (() => void) | null | undefined): Promise<void>
Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The resolved value cannot be modified from the callback.
@param onfinally
— The callback to execute when the Promise is settled (fulfilled or rejected).
@returns — A Promise for the completion of the callback.
Criador
Leonardo Szpaler Pereira
adicionei isso ao meu tsconfig.json e ambos os problemas mencionados pararam!
{
"compilerOptions": {
"target": "es2018",
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"strictNullChecks": true
},
"files": [],
"references": [
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.node.json"
}
]
}
Manager
Carlos Ferreira
Olá, Leonardo! Tudo bem?
Que bom que conseguiu resolver, meus parabéns!!!
Precisa estar logado para conseguir responder a este ticket!
Clique Aqui Para Entrar!