Vue.createApp({ data: function() { return { 'events': null , 'tabs': [ 'Events', 'Create' ] , 'frm': { 'tab': 0, 'e': null } } }, mounted: function() { var app = this; jQuery.get( 'api.php' , { 'cmd': 'get' } , function(data) { app.events = data; } ); } }).mount('#app')