Vuejs V-Model Support without need for value prop.
Have you ever wished to create a component that supports the v-model directive, but works without it as well?
<input v-model="searchText">
turns into
<input
v-bind:value="searchText"
v-on:input="searchText = $event.target.value"
>
As you can se...
espiramarvin.hashnode.dev3 min read