JamieCurnow / vue-clipboard3

Easily copy to clipboard in Vue 3
MIT License
129 stars 13 forks source link

TS2307: Cannot find module 'vue-clipboard3' or its corresponding type declarations. #10

Open ivanmem opened 1 year ago

ivanmem commented 1 year ago

Typescript does not find types. I'm using vite 4 + vue 3.

Code with this error:

import useClipboard from 'vue-clipboard3';

Code without this error:

import useClipboard from "vue-clipboard3/dist/esm/index";

Maybe it's time to update the documentation?