Vue 不会在选项后接受我的代码中的冒号?

Vue won't accept the colon in my code after options?

import * as VueGoogleMaps from 'vue2-google-maps'
Vue.use(VueGoogleMaps, options: {
  load: {
    key: ''
  },
  installComponents: false
}

Vue 一直告诉我选项后面的“:”是错误的,它需要一个“,”。我一直在关注有关添加地理定位地图的教程,并且我完全按照它进行了操作。它接受了他的代码,但不会接受我的。我设置它的方式有问题吗?我正在使用 Vue/Cli.

您不需要标签'options'...请检查下面修改后的代码

import * as VueGoogleMaps from 'vue2-google-maps'
Vue.use(VueGoogleMaps, {
  load: {
    key: ''
  },
  installComponents: false
})

要了解有关 vue2-google-maps 的更多信息,请查看下面的 link.. https://www.npmjs.com/package/vue2-google-maps