summaryrefslogtreecommitdiffstats
path: root/src/components/Sugestion.vue
diff options
context:
space:
mode:
authorjdlugosz963 <jdlugosz963@gmail.com>2021-11-14 03:36:10 +0100
committerjdlugosz963 <jdlugosz963@gmail.com>2021-11-14 03:36:10 +0100
commit7f2f1e63826c0acb4514edfb1fbf7a884893f8c4 (patch)
tree3a9c5d0b74e698c00d9e0ce35b4e80721c8ad548 /src/components/Sugestion.vue
parent319dd896f3a44237e1c26f3887fcb259f80f2714 (diff)
downloadlom_frontend-7f2f1e63826c0acb4514edfb1fbf7a884893f8c4.tar.gz
lom_frontend-7f2f1e63826c0acb4514edfb1fbf7a884893f8c4.zip
Add command line
Diffstat (limited to 'src/components/Sugestion.vue')
-rw-r--r--src/components/Sugestion.vue27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/components/Sugestion.vue b/src/components/Sugestion.vue
new file mode 100644
index 0000000..cfbcd93
--- /dev/null
+++ b/src/components/Sugestion.vue
@@ -0,0 +1,27 @@
1<template>
2 <div class="sugestion">
3 <span>{{command.name}}</span>
4 </div>
5</template>
6
7<script>
8export default {
9 props: {
10 command: Function
11 }
12
13}
14</script>
15
16<style scoped>
17 .sugestion {
18 width: 100%;
19 margin-left: auto;
20 margin-right: auto;
21 background-color: #303030;
22
23 margin-top: 10px;
24 padding: 5px;
25 padding-right: 0px;
26 }
27</style> \ No newline at end of file