#typescript #vue.js #nuxt.js
#typescript #vue.js #nuxt.js
Вопрос:
Лето
Я добавил vue2-timepicker в свой Typescript/Nuxt.js применение.
Но не удалось импортировать vue2-timepicker
import timepicker from 'vue2-timepicker'
Could not find a declaration file for module 'vue2-timepicker'.
'/home/jpskgc/sample-nuxt/node_modules/vue2-timepicker/dist/VueTimepicker.umd.js' implicitly has an 'any' type.
Try `npm i --save-dev @types/vue2-timepicker` if it exists or add a new declaration (.d.ts) file containing `declare module 'vue2-timepicker';`
Я хочу решить эту проблему.
Опишите, что я пробовал.
Я попытался добавить @types/vue2-timepicker, но он не существует.
❯ yarn add @types/vue2-timepicker
yarn add v1.22.17
[1/4] Resolving packages...
error An unexpected error occurred: "https://registry.yarnpkg.com/@types/vue2-timepicke: Not found".
info If you think this is a bug, please open a bug report with the information provided in "/home/jpskgc/sample-nuxt/yarn-error.log".
info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this command.
Показать некоторые коды.
Вот фактический репозиторий. Пожалуйста, проверьте.
https://github.com/jpskgc/nuxt-sample/blob/main/components/registration-form/index.vue
Ответ №1:
Поскольку типы для пакета недоступны, попробуйте их игнорировать.
// @ts-ignore
Импортированный пакет будет работать просто отлично.
Другими вариантами было бы создать фиктивное .d.ts
определение, которое позволит импортировать что-либо из модуля.