summaryrefslogtreecommitdiffstats
path: root/src/components/Sugestion.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Sugestion.vue')
-rw-r--r--src/components/Sugestion.vue13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/components/Sugestion.vue b/src/components/Sugestion.vue
index cfbcd93..4721ca2 100644
--- a/src/components/Sugestion.vue
+++ b/src/components/Sugestion.vue
@@ -1,14 +1,19 @@
1<template> 1<template>
2 <div class="sugestion"> 2 <div class="sugestion">
3 <span>{{command.name}}</span> 3 <span>{{sugestion[0]}}</span>
4 </div> 4 </div>
5</template> 5</template>
6 6
7<script> 7<script>
8export default { 8export default {
9 props: { 9 props: {
10 command: Function 10 sugestion: Array
11 } 11 },
12
13 created() {
14 this.$nextTick(function () {
15 })
16 }
12 17
13} 18}
14</script> 19</script>
@@ -24,4 +29,4 @@ export default {
24 padding: 5px; 29 padding: 5px;
25 padding-right: 0px; 30 padding-right: 0px;
26 } 31 }
27</style> \ No newline at end of file 32</style>