vue.d.ts 235 B

1234567891011121314151617
  1. /**
  2. * Extends interfaces in Vue.js
  3. */
  4. import { Store } from './index'
  5. declare global {
  6. namespace vuejs {
  7. interface ComponentOption {
  8. store?: Store<any>;
  9. }
  10. interface Vue {
  11. $store?: Store<any>;
  12. }
  13. }
  14. }