I have problem to custom my fullcalendar view.
I wanna make default view is month, I can do it if I use JQuery, but How if it using Vue js ?
My JQuery Code
$(document).ready(function() {
$("#calendar").fullCalendar("changeView", "month");
});
My Vue Code
export default {
data() {
return {
eventSources: [
{
events(start, end, timezone, callback) {
axios.get("http://localhost:8000/api/events").then(response => {
callback(response.data.data);
});
},
color: "yellow",
textColor: "black",
}
]
};
}
};
How to move my Jquery code into Vue code?
from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/2ZJr6SM
via IFTTT
Aucun commentaire:
Enregistrer un commentaire