首页 > 解决方案 > 是否可以仅使用 vuetify-google-autocomplete 列出城市?

问题描述

是否可以像这样仅在 vuetify-google-autocomplete 中列出城市?(附图片)

目标

我当前的自动完成看起来像这样,默认情况下它正在搜索完整地址。

实际的

我在文档或任何其他页面上都找不到有关此主题的信息,因此我在这里寻求帮助。

我的代码:

应用程序.js:

import VuetifyGoogleAutocomplete from 'vuetify-google-autocomplete';

Vue.use(VuetifyGoogleAutocomplete, {
  apiKey: 'xxxxxxxxxxxxxxxxxxxxxxxxx',
  installComponents: true,
  vueGoogleMapsCompatibility: false
});

组件.js:

<vuetify-google-autocomplete
  type="text"
  ref="location"
  v-model="location"
  id="map"
  v-on:placechanged="getAddressData"
>

标签: javascriptvue.jsvuetify.js

解决方案


就在这里!你可以这样做:

  <vuetify-google-autocomplete
      id="map"
      placeholder="Location"
      types="(cities)"
  >
  </vuetify-google-autocomplete>

推荐阅读