How to fix vuex type issue

How to fix vuex type issue

In recent vue project we see that vuex type not working properly. We will fix that type issue and make vuex type workable

9th June 2024

vuevolvo

Introduction

In recent version of our vue project, when we try to add vuex we see type error and vuex type not found. We can easily fix that issue.

How to fix that issue

  1. Create a
    vuex.d.ts
    file inside of your route project.
  2. Pase this code in that file
declare module 'vuex' {
  export * from 'vuex/types/index.d.ts'
  export * from 'vuex/types/helpers.d.ts'
  export * from 'vuex/types/logger.d.ts'
  export * from 'vuex/types/vue.d.ts'
}
  1. That's it. Your are ok to go.

Siddhartha Basu

Hi! I am Shankho, (aka. Siddhartha or Sid or by hack name Shankho) a Tech enthusiast, problem solver and software engineer. Currently employed at Natwest Group Bank, Gurugram, India.

Connect With Me

I enjoy company of those who are willing to walk the extra mile. Test Automation Engineer by profession and a philanthropic by heart - `All things bright and beautiful, all creatures great and small`

Sent Mail
© 2020-2024 No Right is reserved. Who cares 🤷‍♂️ anyway.