Files
homepage/cal/index.js

18 lines
502 B
JavaScript
Executable File

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')