Search code examples
javascriptvue.jsvue-componenttypeerroruuid

TypeError: Cannot read property 'v4' of undefined


I am getting this error in Vue.js:

vue.esm.js?efeb:628 [Vue warn]: Error in v-on handler: "TypeError: Cannot read property 'v4'
of undefined"

found in

---> <AddTodo> at src/components/AddTodo.vue
   <App> at src/App.vue
     <Root>

I have already installed uuid, so v4 should be working, but it is not.


Solution

  • I got the same error and I solved it.

    import {v4} from 'uuid';
    
    const uuId = v4()