mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 04:10:06 -05:00
21 lines
305 B
Vue
21 lines
305 B
Vue
<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>
|