Files
mixtape/zero.Web.UI/App/editor/fields/text.vue
T

15 lines
282 B
Vue

<template>
<input :value="value" @input="$emit('input', $event.target.value)" type="text" class="ui-input" v-localize:placeholder="" />
</template>
<script>
export default {
props: {
value: {
type: String,
default: null
}
}
}
</script>