0👍
It looks like you’re using typescript. If no typings exist for that particular package, you’ll need to create your own definition file:
Name it vue-howlder.d.ts
. The contents should be:
declare module `vue-howler`
Make sure your tsconfig
file can find this in wherever your typings directory is.
- [Vuejs]-How to detect if user pressed back button with vue router?
- [Vuejs]-Vue conditional event binding with arguments
Source:stackexchange.com