Skip to content

Instantly share code, notes, and snippets.

@dschreij
dschreij / LocationAutocomplete.vue
Last active May 7, 2022 20:48
Location autocomplete field using the Google Places API and Vuetify's v-combobox
<template>
<v-combobox
v-bind="$attrs"
item-text="description"
item-value="description"
:search-input.sync="query"
:loading="loading"
:items="results"
v-on="$listeners"
@input="handleInput"