[Vuejs]-Vue global variable breaking build with TypeScript

0👍

At the project root add a file name some-variable.d.ts with the following content :


import Vue from 'vue'

declare module 'vue/types/vue' {

  interface Vue {
    $someVariable: <theType>
  }
}

Leave a comment