We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c09f88 commit 780d8eaCopy full SHA for 780d8ea
README.md
@@ -35,7 +35,7 @@ Vue.use(CustomGoogleAutocomplete)
35
<template>
36
<custom-google-autocomplete :options="options" @select="selected = $event)")
37
<div slot-scope="{ inputAttrs, inputEvents, loading, results, query, selectPrediction, hasResults }">
38
- <input type="search" v-bind="inputAttrs" v-on="inputEvents" />
+ <input type="search" v-bind="inputAttrs" v-on="inputEvents" />
39
<div v-for="(prediction, index) in results" :key="'prediction-' + index" @click="selectPrediction(prediction)">
40
{{ prediction.description }}
41
</div>
0 commit comments