Can we bind value directly like
v-bind:value="'India'"
Suppose I have field,
<input id="country" type="text"
class="form-control"
name="country" placeholder="country" v-bind:value="'India'" v-model="fields.country">
throw error
v-bind:value="'India'" conflicts with v-model on the same element because the latter already expands to a value binding internally
Using laravel 7.x and vue 2.5