I want to bind an index to the value attribute of the hidden field. I am trying this:
<div id="panel" class="panel panel-default mt" v-for="(question,index) in questions.slice().reverse()">
<input type="hidden" v-model="question.question_no" :value="index">
</div>
what is the correct way to bind value attribute with an index?

question.question_nois not already set you shouldn't be doing it here, or it will already be set to the value you want. Also you should need to use hidden fields as the model will already have the data.