microsoft / TypeScript-Vue-Starter

A starter template for TypeScript and Vue with a detailed README describing how to use the two together.
MIT License
4.45k stars 595 forks source link

Vuex Support #20

Open winuxue opened 7 years ago

winuxue commented 7 years ago

Add support for Vuex please! At his moment it gives me this error:

vuex

proYang commented 7 years ago

me too, How to use Vuex with TS

peterchealse commented 7 years ago

use vuex-class

DanielRosenwasser commented 6 years ago

If others in the community have ideas, I'd be willing to hear them out. In the meantime, use

data() {
  return { store: this.$store as SomeTypeForStore }
}