Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
damienroche committed Oct 10, 2019
1 parent 2c09f88 commit 780d8ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Vue.use(CustomGoogleAutocomplete)
<template>
<custom-google-autocomplete :options="options" @select="selected = $event)")
<div slot-scope="{ inputAttrs, inputEvents, loading, results, query, selectPrediction, hasResults }">
<input type="search" v-bind="inputAttrs" v-on="inputEvents" />
<input type="search" v-bind="inputAttrs" v-on="inputEvents" />
<div v-for="(prediction, index) in results" :key="'prediction-' + index" @click="selectPrediction(prediction)">
{{ prediction.description }}
</div>
Expand Down

0 comments on commit 780d8ea

Please sign in to comment.