summaryrefslogtreecommitdiffstats
path: root/src/components/searcher/Sugestion.vue
blob: 15a177d0382ef91f9827c01e2ec32aa352221d60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
  <div class="w-auto bg-gray-700 p-2 text-center mt-5">
      <span>{{sugestion[0]}}</span>
  </div>
</template>

<script>
export default {
    props: {
        sugestion: Array
    },
}
</script>