Files
cachet-docker/resources/assets/js/app.js
2018-06-29 20:59:13 +01:00

65 lines
1.6 KiB
JavaScript

/**
* Polyfill promises.
*/
const Promise = require('promise')
/**
* First we will load all of this project's JavaScript dependencies which
* includes Vue and other libraries. It is a great starting point when
* building robust, powerful web applications using Vue and Laravel.
*/
require('./bootstrap');
window.Vue = require('vue');
window.axios = require('axios');
window.axios.defaults.headers.common = {
'X-CSRF-Token': window.Global.csrfToken,
'X-Requested-With': 'XMLHttpRequest'
};
/**
* Flatpickr.
*/
const Flatpickr = require('flatpickr');
((win, doc) => {
/**
* Next, we will create a fresh Vue application instance and attach it to
* the page. Then, you may begin adding components to this application
* or customize the JavaScript scaffolding to fit your unique needs.
*/
Vue.component('fetch-data', require('./components/FetchData'));
new Vue({
el: '#app',
data () {
return {
// TODO: Fill this with the active user.
user: null,
messages: [
//
],
system: {
updateAvailable: false,
}
}
},
mounted () {
Flatpickr('.flatpickr');
Flatpickr('.flatpickr-time', {
enableTime: true
});
},
components: {
'setup': require('./components/Setup'),
'dashboard': require('./components/dashboard/Dashboard'),
'metric-chart': require('./components/status-page/Metric'),
}
});
})()