17 lines
307 B
JavaScript
17 lines
307 B
JavaScript
module.exports = {
|
|
props: ['welcome-user'],
|
|
mounted () {
|
|
if (this.welcomeUser) {
|
|
$('#welcome-modal').modal('show');
|
|
}
|
|
},
|
|
methods: {
|
|
fetchIncidentTimeline () {
|
|
//
|
|
},
|
|
fetchSubscriberTimeline () {
|
|
//
|
|
}
|
|
}
|
|
}
|