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.vue32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/components/Sugestion.vue b/src/components/Sugestion.vue
deleted file mode 100644
index 4721ca2..0000000
--- a/src/components/Sugestion.vue
+++ /dev/null
@@ -1,32 +0,0 @@
1<template>
2 <div class="sugestion">
3 <span>{{sugestion[0]}}</span>
4 </div>
5</template>
6
7<script>
8export default {
9 props: {
10 sugestion: Array
11 },
12
13 created() {
14 this.$nextTick(function () {
15 })
16 }
17
18}
19</script>
20
21<style scoped>
22 .sugestion {
23 width: 100%;
24 margin-left: auto;
25 margin-right: auto;
26 background-color: #303030;
27
28 margin-top: 10px;
29 padding: 5px;
30 padding-right: 0px;
31 }
32</style>