add path to generic cards for food/keywords

This commit is contained in:
smilerz
2021-12-22 16:18:45 -06:00
parent 2d0a7330f3
commit c20e036d90
5 changed files with 64 additions and 36 deletions

View File

@@ -0,0 +1,20 @@
<template>
<div class="small text-muted">
{{ value }}
</div>
</template>
<script>
export default {
name: "TextInput",
props: {
value: { type: String, default: "" },
},
data() {
return {}
},
mounted() {},
watch: {},
methods: {},
}
</script>