Relative Content

Tag Archive for nuxt.jsnuxtjs3nuxt3

TypeScript Errors with ES Lint and VSCode Settings in Nuxt3

Summary After creating a new project with Nuxt3, I encounter mysterious ESLint errors in VSCode. For example, in the following code: <script setup lang=”ts”> const { params } = useRoute() const { data } = await useFetch(‘/api/fetchCardById’, { query: { id: params.id } }) </script> an error No overload matches this call. is raised. In […]