Thank you. I did’t saw the “view source button” before. Autocomplete is what I’m looking for.
J
Latest posts made by jdash99
-
RE: Autocomplete example with simple array
-
Autocomplete example with simple array
Can someone give me a full example of autocomplete component using a simple array or an object?
I’m trying to replicate the examples in the documentation but haven’t got very far.
This is what I have tried:
<template> <q-autocomplete v-model="terms" @search="search"></q-autocomplete> </template> <script> export default { name: 'test' data () { return { terms: ['sheet', 'purple', 'local', 'face'] } } </script>