Display in v-for laravel-vue
问题 EDITED: I'm using Vue.js and I'm having an issue that my object JSON-string doesn't show. The problem is the object string doesn't display in v-for. JS var app = new Vue({ el: '#ob-rapper', data:{ items:[], }, mounted: function mounted(){ this.getVueItems(); }, methods:{ getVueItems: function getVueItems() { var _this = this; axios.get('/viewrequestsample').then(function (response) { _this.items = response.data; }); } } }); Controller: public function viewRequestSample(){ $data = OBMaster: