Files
cachet-docker/resources/assets/js/components/dashboard/Dashboard.vue
2018-06-17 18:43:29 +01:00

26 lines
544 B
Vue

<script>
const Vue = require('vue');
module.exports = {
props: ['user'],
mounted () {
if (!this.user.welcomed) {
// @todo Replace this with a non-jquery alternative.
$('#welcome-modal').modal('show');
}
},
methods: {
fetchIncidentTimeline () {
//
},
fetchSubscriberTimeline () {
//
}
},
components: {
'report-incident': require('./ReportIncident'),
'invite-team': require('./InviteTeam'),
}
}
</script>