nuxt-google-maps-module
nuxt-google-maps-module copied to clipboard
Typescript support
Can we add typings for typescript support? Or how do we add custom typings for vue interface this.$google?
You can create your own.
Here's mine:
import Google from 'nuxt-google-maps-module'
import Vue from 'vue'
declare module 'vue/types/vue' {
interface Vue {
$google: Google
}
}