[Vuejs]-Typing the Store when imported to typescript pinia vue

0👍

You just need to use the defineComponent() wrapper around your component object to have Typescript types:

// Will correctly type your component data, methods etc.
export default defineComponent({
  setup() {}
})

Leave a comment