Better Way to use Laravel old and Vue.js
Im working using vue.js 2.0 and Laravel 5.4 I would like to know if exits a better way to send data Controllers -> views without lost the value, overwrite by the v-model Because after charge vue.js this take the value in data that is define in this way data: { ciudad:'', } If I try to do something like that <input class="form-control" id="ciudad" name="ciudad" type="text" v-model="documento.ciudad" value="{{ $documento->ciudad }}" > I lost the value sending by the controller Vue really expects you to init data from the view model which then updates the view, however, you want to use data in