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 579a48b commit a9cfc7eCopy full SHA for a9cfc7e
README.md
@@ -152,9 +152,10 @@ for the suggestion `list-item`'s
152
>
153
<!-- htmlText is bound to the matched text derived from the serializer function -->
154
<!-- data is bound to the matching array element in the data prop -->
155
- <template slot="suggestion" slot-scope="{ data, htmlText }">
156
- <span v-html="htmlText"></span> <small>{{ data.code }}</small>
+ <template v-slot:suggestion="slotProp">
+ <span v-html="slotProp.htmlText"></span> <small>{{ slotProp.data.code }}</small>
157
</template>
158
+
159
</vue-bootstrap-typeahead>
160
```
161
0 commit comments