<input type="text" placeholder="{{fromTimeWindow}}" v-model="fromTimeWindow"/>
or<input type="text" v-bind:placeholder="{{fromTimeWindow}}" v-model="fromTimeWindow"/>
both of the above above code gives me error. I want to use variable "fromTimeWindow" value as placeholder.
v-bind:placeholder="fromTimeWindow". You can't use moustache in attribute value binding anyway.